Class OidcClientRegistration
java.lang.Object
org.springframework.security.oauth2.server.authorization.oidc.OidcClientRegistration
- All Implemented Interfaces:
Serializable,org.springframework.security.oauth2.core.ClaimAccessor,OidcClientMetadataClaimAccessor
public final class OidcClientRegistration
extends Object
implements OidcClientMetadataClaimAccessor, Serializable
A representation of an OpenID Client Registration Request and Response, which is sent
to and returned from the Client Registration Endpoint, and contains a set of claims
about the Client's Registration information. The claims are defined by the OpenID
Connect Dynamic Client Registration 1.0 specification.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Constructs a newOidcClientRegistration.Builderwith empty claims.Returns the metadata as claims.withClaims(Map<String, Object> claims) Constructs a newOidcClientRegistration.Builderwith the provided claims.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.security.oauth2.core.ClaimAccessor
getClaim, getClaimAsBoolean, getClaimAsInstant, getClaimAsMap, getClaimAsString, getClaimAsStringList, getClaimAsURL, hasClaimMethods inherited from interface org.springframework.security.oauth2.server.authorization.oidc.OidcClientMetadataClaimAccessor
getClientId, getClientIdIssuedAt, getClientName, getClientSecret, getClientSecretExpiresAt, getGrantTypes, getIdTokenSignedResponseAlgorithm, getJwkSetUrl, getPostLogoutRedirectUris, getRedirectUris, getRegistrationAccessToken, getRegistrationClientUrl, getResponseTypes, getScopes, getTokenEndpointAuthenticationMethod, getTokenEndpointAuthenticationSigningAlgorithm
-
Method Details
-
getClaims
Returns the metadata as claims.- Specified by:
getClaimsin interfaceorg.springframework.security.oauth2.core.ClaimAccessor- Returns:
- a
Mapof the metadata as claims
-
builder
Constructs a newOidcClientRegistration.Builderwith empty claims.- Returns:
- the
OidcClientRegistration.Builder
-
withClaims
Constructs a newOidcClientRegistration.Builderwith the provided claims.- Parameters:
claims- the claims to initialize the builder- Returns:
- the
OidcClientRegistration.Builder
-