Class JwtBearerOAuth2AuthorizedClientProvider
java.lang.Object
org.springframework.security.oauth2.client.JwtBearerOAuth2AuthorizedClientProvider
- All Implemented Interfaces:
OAuth2AuthorizedClientProvider
public final class JwtBearerOAuth2AuthorizedClientProvider
extends Object
implements OAuth2AuthorizedClientProvider
An implementation of an
OAuth2AuthorizedClientProvider
for the
jwt-bearer
grant.- Since:
- 5.5
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionauthorize
(OAuth2AuthorizationContext context) Attempt to authorize (or re-authorize) theclient
in the providedcontext
.void
setAccessTokenResponseClient
(OAuth2AccessTokenResponseClient<JwtBearerGrantRequest> accessTokenResponseClient) Sets the client used when requesting an access token credential at the Token Endpoint for thejwt-bearer
grant.void
Sets theClock
used inInstant.now(Clock)
when checking the access token expiry.void
setClockSkew
(Duration clockSkew) Sets the maximum acceptable clock skew, which is used when checking theaccess token
expiry.void
setJwtAssertionResolver
(Function<OAuth2AuthorizationContext, Jwt> jwtAssertionResolver) Sets the resolver used for resolving theJwt
assertion.
-
Constructor Details
-
JwtBearerOAuth2AuthorizedClientProvider
public JwtBearerOAuth2AuthorizedClientProvider()
-
-
Method Details
-
authorize
Attempt to authorize (or re-authorize) theclient
in the providedcontext
. Returnsnull
if authorization (or re-authorization) is not supported, e.g. the client'sauthorization grant type
is notjwt-bearer
OR theaccess token
is not expired.- Specified by:
authorize
in interfaceOAuth2AuthorizedClientProvider
- Parameters:
context
- the context that holds authorization-specific state for the client- Returns:
- the
OAuth2AuthorizedClient
ornull
if 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-bearer
grant.- Parameters:
accessTokenResponseClient
- the client used when requesting an access token credential at the Token Endpoint for thejwt-bearer
grant
-
setJwtAssertionResolver
Sets the resolver used for resolving theJwt
assertion.- Parameters:
jwtAssertionResolver
- the resolver used for resolving theJwt
assertion- Since:
- 5.7
-
setClockSkew
Sets the maximum acceptable clock skew, which is used when checking theaccess token
expiry. The default is 60 seconds.An access token is considered expired if
OAuth2AccessToken#getExpiresAt() - clockSkew
is before the current timeclock#instant()
.- Parameters:
clockSkew
- the maximum acceptable clock skew
-
setClock
Sets theClock
used inInstant.now(Clock)
when checking the access token expiry.- Parameters:
clock
- the clock
-