All Classes and Interfaces

Class
Description
A base representation of OAuth 2.0 Authorization Server metadata, returned by an endpoint defined in OAuth 2.0 Authorization Server Metadata and OpenID Connect Discovery 1.0.
A builder for subclasses of AbstractOAuth2AuthorizationServerMetadata.
Base implementation for configuration settings.
A builder for subclasses of AbstractSettings.
An AuthenticationProvider implementation used for OAuth 2.0 Client Authentication, which authenticates the client_secret parameter.
Attempts to extract HTTP Basic credentials from HttpServletRequest and then converts to an OAuth2ClientAuthenticationToken used for authenticating the client.
Attempts to extract client credentials from POST parameters of HttpServletRequest and then converts to an OAuth2ClientAuthenticationToken used for authenticating the client.
A facility for client configuration settings.
A builder for ClientSettings.
The names for all the configuration settings.
The names for client configuration settings.
The names for provider configuration settings.
The names for token configuration settings.
A facility for holding information associated to a specific context.
Default implementation of OAuth2TokenContext.
An AuthenticationConverter that simply delegates to it's internal List of AuthenticationConverter(s).
An OAuth2TokenGenerator that simply delegates to it's internal List of OAuth2TokenGenerator(s).
A RegisteredClientRepository that stores RegisteredClient(s) in-memory.
A JDBC implementation of an OAuth2AuthorizationConsentService that uses a JdbcOperations for OAuth2AuthorizationConsent persistence.
The default Function that maps OAuth2AuthorizationConsent to a List of SqlParameterValue.
The default RowMapper that maps the current row in ResultSet to OAuth2AuthorizationConsent.
A JDBC implementation of an OAuth2AuthorizationService that uses a JdbcOperations for OAuth2Authorization persistence.
The default Function that maps OAuth2Authorization to a List of SqlParameterValue.
The default RowMapper that maps the current row in java.sql.ResultSet to OAuth2Authorization.
A JDBC implementation of a RegisteredClientRepository that uses a JdbcOperations for RegisteredClient persistence.
The default Function that maps RegisteredClient to a List of SqlParameterValue.
The default RowMapper that maps the current row in java.sql.ResultSet to RegisteredClient.
Attempts to extract a JWT client assertion credential from HttpServletRequest and then converts to an OAuth2ClientAuthenticationToken used for authenticating the client.
An AuthenticationProvider implementation used for OAuth 2.0 Client Authentication, which authenticates the (JWT) client_assertion parameter.
An OAuth2TokenContext implementation used when encoding a Jwt.
A builder for JwtEncodingContext.
An OAuth2TokenGenerator that generates a Jwt used for an OAuth2AccessToken or OidcIdToken.
A Filter that processes JWK Set requests.
An Authentication implementation used when issuing an OAuth 2.0 Access Token and (optional) Refresh Token.
An OAuth2TokenGenerator that generates a "reference" (opaque) OAuth2AccessToken.
A context that holds an Authentication and (optionally) additional information.
A builder for subclasses of OAuth2AuthenticationContext.
Implementations of this interface are responsible for validating the attribute(s) of the Authentication associated to the OAuth2AuthenticationContext.
A representation of an OAuth 2.0 Authorization, which holds state related to the authorization granted to a client, by the resource owner or itself in the case of the client_credentials grant type.
A builder for OAuth2Authorization.
OAuth2Authorization.Token<T extends org.springframework.security.oauth2.core.OAuth2Token>
A holder of an OAuth 2.0 Token and it's associated metadata.
An implementation of an AbstractOAuth2Token representing an OAuth 2.0 Authorization Code Grant.
Attempts to extract an Access Token Request from HttpServletRequest for the OAuth 2.0 Authorization Code Grant and then converts it to an OAuth2AuthorizationCodeAuthenticationToken used for authenticating the authorization grant.
An AuthenticationProvider implementation for the OAuth 2.0 Authorization Code Grant.
An Authentication implementation used for the OAuth 2.0 Authorization Code Grant.
Attempts to extract an Authorization Request (or Consent) from HttpServletRequest for the OAuth 2.0 Authorization Code Grant and then converts it to an OAuth2AuthorizationCodeRequestAuthenticationToken used for authenticating the request.
This exception is thrown by OAuth2AuthorizationCodeRequestAuthenticationProvider when an attempt to authenticate the OAuth 2.0 Authorization Request (or Consent) fails.
An AuthenticationProvider implementation for the OAuth 2.0 Authorization Request (and Consent) used in the Authorization Code Grant.
An Authentication implementation for the OAuth 2.0 Authorization Request (and Consent) used in the Authorization Code Grant.
A representation of an OAuth 2.0 "consent" to an Authorization request, which holds state related to the set of authorities granted to a client by the resource owner.
An OAuth2AuthenticationContext that holds an OAuth2AuthorizationConsent.Builder and additional information and is used when customizing the building of the OAuth2AuthorizationConsent.
Implementations of this interface are responsible for the management of OAuth 2.0 Authorization Consent(s).
Configurer for the OAuth 2.0 Authorization Endpoint.
A Filter for the OAuth 2.0 Authorization Code Grant, which handles the processing of the OAuth 2.0 Authorization Request (and Consent).
Base implementation of an Authentication representing an OAuth 2.0 Authorization Grant.
Configuration for OAuth 2.0 Authorization Server support.
An AbstractHttpConfigurer for OAuth 2.0 Authorization Server support.
Jackson Module for spring-authorization-server, that registers the following mix-in annotations: UnmodifiableMapMixin HashSetMixin OAuth2AuthorizationRequestMixin DurationMixin JwsAlgorithmMixin OAuth2TokenFormatMixin If not already enabled, default typing will be automatically enabled as type info is required to properly serialize/deserialize objects.
A representation of an OAuth 2.0 Authorization Server Metadata response, which is returned from an OAuth 2.0 Authorization Server's Metadata Endpoint, and contains a set of claims about the Authorization Server's configuration.
A ClaimAccessor for the "claims" an Authorization Server describes about its configuration, used in OAuth 2.0 Authorization Server Metadata and OpenID Connect Discovery 1.0.
The names of the "claims" an Authorization Server describes about its configuration, used in OAuth 2.0 Authorization Server Metadata and OpenID Connect Discovery 1.0.
A Filter that processes OAuth 2.0 Authorization Server Metadata Requests.
Implementations of this interface are responsible for the management of OAuth 2.0 Authorization(s).
Configurer for OAuth 2.0 Client Authentication.
A Filter that processes an authentication request for an OAuth 2.0 Client.
An Authentication implementation used for OAuth 2.0 Client Authentication.
Attempts to extract an Access Token Request from HttpServletRequest for the OAuth 2.0 Client Credentials Grant and then converts it to an OAuth2ClientCredentialsAuthenticationToken used for authenticating the authorization grant.
An AuthenticationProvider implementation for the OAuth 2.0 Client Credentials Grant.
An Authentication implementation used for the OAuth 2.0 Client Credentials Grant.
Attempts to extract an Access Token Request from HttpServletRequest for the OAuth 2.0 Refresh Token Grant and then converts it to an OAuth2RefreshTokenAuthenticationToken used for authenticating the authorization grant.
An AuthenticationProvider implementation for the OAuth 2.0 Refresh Token Grant.
An Authentication implementation used for the OAuth 2.0 Refresh Token Grant.
An OAuth2TokenGenerator that generates an OAuth2RefreshToken.
A ClaimAccessor for the "claims" that may be contained in an OAuth2TokenClaimsSet.
The names of the "claims" that may be contained in an OAuth2TokenClaimsSet and are associated to an OAuth2Token.
An OAuth2TokenContext implementation that provides access to the claims of an OAuth 2.0 Token, allowing the ability to customize.
A representation of a set of claims that are associated to an OAuth2Token.
A builder for OAuth2TokenClaimsSet.
A context that holds information (to be) associated to an OAuth 2.0 Token and is used by an OAuth2TokenGenerator and OAuth2TokenCustomizer.
Base builder for implementations of OAuth2TokenContext.
Implementations of this interface are responsible for customizing the OAuth 2.0 Token attributes contained within the OAuth2TokenContext.
Configurer for the OAuth 2.0 Token Endpoint.
A Filter for the OAuth 2.0 Token endpoint, which handles the processing of an OAuth 2.0 Authorization Grant.
Standard data formats for OAuth 2.0 Tokens.
OAuth2TokenGenerator<T extends org.springframework.security.oauth2.core.OAuth2Token>
Implementations of this interface are responsible for generating an OAuth2Token using the attributes contained in the OAuth2TokenContext.
A representation of the claims returned in an OAuth 2.0 Token Introspection Response.
An AuthenticationProvider implementation for OAuth 2.0 Token Introspection.
An Authentication implementation used for OAuth 2.0 Token Introspection.
Configurer for the OAuth 2.0 Token Introspection Endpoint.
A Filter for the OAuth 2.0 Token Introspection endpoint.
A HttpMessageConverter for an OAuth 2.0 Token Introspection Response.
An AuthenticationProvider implementation for OAuth 2.0 Token Revocation.
An Authentication implementation used for OAuth 2.0 Token Revocation.
Configurer for the OAuth 2.0 Token Revocation Endpoint.
A Filter for the OAuth 2.0 Token Revocation endpoint.
Standard token types defined in the OAuth Token Type Hints Registry.
A ClaimAccessor for the "claims" that are contained in the OpenID Client Registration Request and Response.
The names of the "claims" defined by OpenID Connect Dynamic Client Registration 1.0 that are contained in the OpenID Client Registration Request and Response.
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.
Helps configure an OidcClientRegistration.
An AuthenticationProvider implementation for OpenID Connect 1.0 Dynamic Client Registration (and Configuration) Endpoint.
An Authentication implementation used for OpenID Connect 1.0 Dynamic Client Registration (and Configuration) Endpoint.
Configurer for OpenID Connect Dynamic Client Registration 1.0 Endpoint.
A Filter that processes OpenID Connect Dynamic Client Registration (and Configuration) 1.0 Requests.
Configurer for OpenID Connect 1.0 support.
A representation of an OpenID Provider Configuration Response, which is returned from an Issuer's Discovery Endpoint, and contains a set of claims about the OpenID Provider's configuration.
Helps configure an OidcProviderConfiguration.
A Filter that processes OpenID Provider Configuration Requests.
A HttpMessageConverter for an OpenID Provider Configuration Response.
A ClaimAccessor for the "claims" that can be returned in the OpenID Provider Configuration Response.
The names of the "claims" defined by OpenID Connect Discovery 1.0 that can be returned in the OpenID Provider Configuration Response.
An OAuth2AuthenticationContext that holds an OidcUserInfoAuthenticationToken and additional information and is used when mapping claims to an instance of OidcUserInfo.
An AuthenticationProvider implementation for OpenID Connect 1.0 UserInfo Endpoint.
An Authentication implementation used for OpenID Connect 1.0 UserInfo Endpoint.
Configurer for OpenID Connect 1.0 UserInfo Endpoint.
A Filter that processes OpenID Connect 1.0 UserInfo Requests.
A HttpMessageConverter for an OpenID Connect UserInfo Response.
A context that holds information of the Provider.
A Filter that associates the ProviderContext to the ProviderContextHolder.
A holder of ProviderContext that associates it with the current thread using a ThreadLocal.
A facility for provider configuration settings.
A builder for ProviderSettings.
Attempts to extract the parameters from HttpServletRequest used for authenticating public clients using Proof Key for Code Exchange (PKCE).
An AuthenticationProvider implementation used for OAuth 2.0 Public Client Authentication, which authenticates the code_verifier parameter.
A representation of a client registration with an OAuth 2.0 Authorization Server.
A builder for RegisteredClient.
A repository for OAuth 2.0 RegisteredClient(s).
Internal class used for serialization across Spring Authorization Server classes.
A facility for token configuration settings.
A builder for TokenSettings.