Class WebClientReactiveClientCredentialsTokenResponseClient
- java.lang.Object
-
- org.springframework.security.oauth2.client.endpoint.WebClientReactiveClientCredentialsTokenResponseClient
-
- All Implemented Interfaces:
ReactiveOAuth2AccessTokenResponseClient<OAuth2ClientCredentialsGrantRequest>
public class WebClientReactiveClientCredentialsTokenResponseClient extends java.lang.Object implements ReactiveOAuth2AccessTokenResponseClient<OAuth2ClientCredentialsGrantRequest>
An implementation of anReactiveOAuth2AccessTokenResponseClientthat "exchanges" an authorization code 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(OAuth2ClientCredentialsGrantRequest authorizationGrantRequest)Exchanges the authorization grant credential, provided in the authorization grant request, for an access token credential at the Authorization Server's Token Endpoint.voidsetWebClient(org.springframework.web.reactive.function.client.WebClient webClient)
-
-
-
Method Detail
-
getTokenResponse
public reactor.core.publisher.Mono<OAuth2AccessTokenResponse> getTokenResponse(OAuth2ClientCredentialsGrantRequest authorizationGrantRequest)
Description copied from interface:ReactiveOAuth2AccessTokenResponseClientExchanges the authorization grant credential, provided in the authorization grant request, for an access token credential at the Authorization Server's Token Endpoint.- Specified by:
getTokenResponsein interfaceReactiveOAuth2AccessTokenResponseClient<OAuth2ClientCredentialsGrantRequest>- Parameters:
authorizationGrantRequest- the authorization grant request that contains the authorization grant credential- Returns:
- an
OAuth2AccessTokenResponsethat contains theaccess tokencredential
-
setWebClient
public void setWebClient(org.springframework.web.reactive.function.client.WebClient webClient)
-
-