![JAR search and dependency download from the Maven repository](/logo.png)
com.nimbusds.openid.connect.provider.spi.claims.ClaimsSupport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of c2id-server-sdk Show documentation
Show all versions of c2id-server-sdk Show documentation
Toolkit for developing Connect2id Server extensions, such as
custom OpenID Connect claims sources and grant handlers.
package com.nimbusds.openid.connect.provider.spi.claims;
import java.util.Set;
/**
* Interface for querying OpenID Connect claims support. Implementations must
* be thread-safe.
*/
public interface ClaimsSupport {
/**
* Returns the names of the supported OpenID Connect claims.
*
* Example:
*
*
* name
* email
* email_verified
*
*
* @return The supported claim names. Should not include the reserved
* {@code sub} (subject) claim name.
*/
Set supportedClaims();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy