Class DefaultRefreshTokenTokenResponseClient
java.lang.Object
org.springframework.security.oauth2.client.endpoint.DefaultRefreshTokenTokenResponseClient
- All Implemented Interfaces:
 OAuth2AccessTokenResponseClient<OAuth2RefreshTokenGrantRequest>
@Deprecated(since="6.4")
public final class DefaultRefreshTokenTokenResponseClient
extends Object
implements OAuth2AccessTokenResponseClient<OAuth2RefreshTokenGrantRequest>
Deprecated.
The default implementation of an 
OAuth2AccessTokenResponseClient for the
 refresh_token grant. This implementation
 uses a RestOperations when requesting an access token credential at the
 Authorization Server's Token Endpoint.- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptiongetTokenResponse(OAuth2RefreshTokenGrantRequest refreshTokenGrantRequest) Deprecated.Exchanges the authorization grant credential, provided in the authorization grant request, for an access token credential at the Authorization Server's Token Endpoint.voidsetRequestEntityConverter(org.springframework.core.convert.converter.Converter<OAuth2RefreshTokenGrantRequest, org.springframework.http.RequestEntity<?>> requestEntityConverter) Deprecated.Sets theConverterused for converting theOAuth2RefreshTokenGrantRequestto aRequestEntityrepresentation of the OAuth 2.0 Access Token Request.voidsetRestOperations(org.springframework.web.client.RestOperations restOperations) Deprecated.Sets theRestOperationsused when requesting the OAuth 2.0 Access Token Response. 
- 
Constructor Details
- 
DefaultRefreshTokenTokenResponseClient
public DefaultRefreshTokenTokenResponseClient()Deprecated. 
 - 
 - 
Method Details
- 
getTokenResponse
public OAuth2AccessTokenResponse getTokenResponse(OAuth2RefreshTokenGrantRequest refreshTokenGrantRequest) Deprecated.Description copied from interface:OAuth2AccessTokenResponseClientExchanges 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 interfaceOAuth2AccessTokenResponseClient<OAuth2RefreshTokenGrantRequest>- Parameters:
 refreshTokenGrantRequest- the authorization grant request that contains the authorization grant credential- Returns:
 - an 
OAuth2AccessTokenResponsethat contains theaccess tokencredential 
 - 
setRequestEntityConverter
public void setRequestEntityConverter(org.springframework.core.convert.converter.Converter<OAuth2RefreshTokenGrantRequest, org.springframework.http.RequestEntity<?>> requestEntityConverter) Deprecated.Sets theConverterused for converting theOAuth2RefreshTokenGrantRequestto aRequestEntityrepresentation of the OAuth 2.0 Access Token Request.- Parameters:
 requestEntityConverter- theConverterused for converting to aRequestEntityrepresentation of the Access Token Request
 - 
setRestOperations
public void setRestOperations(org.springframework.web.client.RestOperations restOperations) Deprecated.Sets theRestOperationsused when requesting the OAuth 2.0 Access Token Response.NOTE: At a minimum, the supplied
restOperationsmust be configured with the following:HttpMessageConverter's -FormHttpMessageConverterandOAuth2AccessTokenResponseHttpMessageConverterResponseErrorHandler-OAuth2ErrorResponseErrorHandler
- Parameters:
 restOperations- theRestOperationsused when requesting the Access Token Response
 
 - 
 
RestClientRefreshTokenTokenResponseClientinstead