See: Description
| Interface | Description |
|---|---|
| OAuth2AccessTokenResponseClient<T extends AbstractOAuth2AuthorizationGrantRequest> |
A strategy for "exchanging" an authorization grant credential
(e.g.
|
| ReactiveOAuth2AccessTokenResponseClient<T extends AbstractOAuth2AuthorizationGrantRequest> |
A reactive strategy for "exchanging" an authorization grant credential
(e.g.
|
| Class | Description |
|---|---|
| AbstractOAuth2AuthorizationGrantRequest |
Base implementation of an OAuth 2.0 Authorization Grant request
that holds an authorization grant credential and is used when
initiating a request to the Authorization Server's Token Endpoint.
|
| DefaultAuthorizationCodeTokenResponseClient |
The default implementation of an
OAuth2AccessTokenResponseClient
for the authorization_code grant. |
| DefaultClientCredentialsTokenResponseClient |
The default implementation of an
OAuth2AccessTokenResponseClient
for the client_credentials grant. |
| DefaultPasswordTokenResponseClient |
The default implementation of an
OAuth2AccessTokenResponseClient
for the password grant. |
| DefaultRefreshTokenTokenResponseClient |
The default implementation of an
OAuth2AccessTokenResponseClient
for the refresh_token grant. |
| NimbusAuthorizationCodeTokenResponseClient | Deprecated |
| OAuth2AuthorizationCodeGrantRequest |
An OAuth 2.0 Authorization Code Grant request that holds an Authorization Code credential,
which was granted by the Resource Owner to the
Client. |
| OAuth2AuthorizationCodeGrantRequestEntityConverter |
A
Converter that converts the provided OAuth2AuthorizationCodeGrantRequest
to a RequestEntity representation of an OAuth 2.0 Access Token Request
for the Authorization Code Grant. |
| OAuth2ClientCredentialsGrantRequest |
An OAuth 2.0 Client Credentials Grant request that holds
the client's credentials in
OAuth2ClientCredentialsGrantRequest.getClientRegistration(). |
| OAuth2ClientCredentialsGrantRequestEntityConverter |
A
Converter that converts the provided OAuth2ClientCredentialsGrantRequest
to a RequestEntity representation of an OAuth 2.0 Access Token Request
for the Client Credentials Grant. |
| OAuth2PasswordGrantRequest |
An OAuth 2.0 Resource Owner Password Credentials Grant request
that holds the resource owner's credentials.
|
| OAuth2PasswordGrantRequestEntityConverter |
A
Converter that converts the provided OAuth2PasswordGrantRequest
to a RequestEntity representation of an OAuth 2.0 Access Token Request
for the Resource Owner Password Credentials Grant. |
| OAuth2RefreshTokenGrantRequest |
An OAuth 2.0 Refresh Token Grant request that holds the
refresh token credential
granted to the client. |
| OAuth2RefreshTokenGrantRequestEntityConverter |
A
Converter that converts the provided OAuth2RefreshTokenGrantRequest
to a RequestEntity representation of an OAuth 2.0 Access Token Request
for the Refresh Token Grant. |
| WebClientReactiveAuthorizationCodeTokenResponseClient |
An implementation of a
ReactiveOAuth2AccessTokenResponseClient that "exchanges"
an authorization code credential for an access token credential
at the Authorization Server's Token Endpoint. |
| WebClientReactiveClientCredentialsTokenResponseClient |
An implementation of a
ReactiveOAuth2AccessTokenResponseClient that "exchanges"
a client credential for an access token credential
at the Authorization Server's Token Endpoint. |
| WebClientReactivePasswordTokenResponseClient |
An implementation of a
ReactiveOAuth2AccessTokenResponseClient
for the password grant. |
| WebClientReactiveRefreshTokenTokenResponseClient |
An implementation of a
ReactiveOAuth2AccessTokenResponseClient
for the refresh_token grant. |