Class JwtBearerOAuth2AuthorizedClientProvider
- java.lang.Object
-
- org.springframework.security.oauth2.client.JwtBearerOAuth2AuthorizedClientProvider
-
- All Implemented Interfaces:
OAuth2AuthorizedClientProvider
public final class JwtBearerOAuth2AuthorizedClientProvider extends java.lang.Object implements OAuth2AuthorizedClientProvider
An implementation of anOAuth2AuthorizedClientProviderfor thejwt-bearergrant.- Since:
- 5.5
- See Also:
OAuth2AuthorizedClientProvider,DefaultJwtBearerTokenResponseClient
-
-
Constructor Summary
Constructors Constructor Description JwtBearerOAuth2AuthorizedClientProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OAuth2AuthorizedClientauthorize(OAuth2AuthorizationContext context)Attempt to authorize theclientin the providedcontext.voidsetAccessTokenResponseClient(OAuth2AccessTokenResponseClient<JwtBearerGrantRequest> accessTokenResponseClient)Sets the client used when requesting an access token credential at the Token Endpoint for thejwt-bearergrant.
-
-
-
Method Detail
-
authorize
@Nullable public OAuth2AuthorizedClient authorize(OAuth2AuthorizationContext context)
Attempt to authorize theclientin the providedcontext. Returnsnullif authorization is not supported, e.g. the client'sauthorization grant typeis notjwt-bearer.- Specified by:
authorizein interfaceOAuth2AuthorizedClientProvider- Parameters:
context- the context that holds authorization-specific state for the client- Returns:
- the
OAuth2AuthorizedClientornullif authorization is not supported
-
setAccessTokenResponseClient
public void setAccessTokenResponseClient(OAuth2AccessTokenResponseClient<JwtBearerGrantRequest> accessTokenResponseClient)
Sets the client used when requesting an access token credential at the Token Endpoint for thejwt-bearergrant.- Parameters:
accessTokenResponseClient- the client used when requesting an access token credential at the Token Endpoint for thejwt-bearergrant
-
-