Class WebClientReactiveClientCredentialsTokenResponseClient
- java.lang.Object
-
- org.springframework.security.oauth2.client.endpoint.WebClientReactiveClientCredentialsTokenResponseClient
-
- All Implemented Interfaces:
ReactiveOAuth2AccessTokenResponseClient<OAuth2ClientCredentialsGrantRequest>
public class WebClientReactiveClientCredentialsTokenResponseClient extends java.lang.Object
An implementation of aReactiveOAuth2AccessTokenResponseClient
that "exchanges" a client credential for an access token credential at the Authorization Server's Token Endpoint.
-
-
Constructor Summary
Constructors Constructor Description WebClientReactiveClientCredentialsTokenResponseClient()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description reactor.core.publisher.Mono<OAuth2AccessTokenResponse>
getTokenResponse(T grantRequest)
Exchanges the authorization grant credential, provided in the authorization grant request, for an access token credential at the Authorization Server's Token Endpoint.void
setWebClient(org.springframework.web.reactive.function.client.WebClient webClient)
Sets theWebClient
used when requesting the OAuth 2.0 Access Token Response.
-
-
-
Method Detail
-
getTokenResponse
public reactor.core.publisher.Mono<OAuth2AccessTokenResponse> getTokenResponse(T grantRequest)
Description copied from interface:ReactiveOAuth2AccessTokenResponseClient
Exchanges the authorization grant credential, provided in the authorization grant request, for an access token credential at the Authorization Server's Token Endpoint.- Specified by:
getTokenResponse
in interfaceReactiveOAuth2AccessTokenResponseClient<T extends AbstractOAuth2AuthorizationGrantRequest>
- Parameters:
grantRequest
- the authorization grant request that contains the authorization grant credential- Returns:
- an
OAuth2AccessTokenResponse
that contains theaccess token
credential
-
setWebClient
public void setWebClient(org.springframework.web.reactive.function.client.WebClient webClient)
Sets theWebClient
used when requesting the OAuth 2.0 Access Token Response.- Parameters:
webClient
- theWebClient
used when requesting the Access Token Response
-
-