Class DefaultClientCredentialsTokenResponseClient

    • Constructor Detail

      • DefaultClientCredentialsTokenResponseClient

        public DefaultClientCredentialsTokenResponseClient()
    • Method Detail

      • getTokenResponse

        public org.springframework.security.oauth2.core.endpoint.OAuth2AccessTokenResponse getTokenResponse​(OAuth2ClientCredentialsGrantRequest clientCredentialsGrantRequest)
        Description copied from interface: OAuth2AccessTokenResponseClient
        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 interface OAuth2AccessTokenResponseClient<OAuth2ClientCredentialsGrantRequest>
        Parameters:
        clientCredentialsGrantRequest - the authorization grant request that contains the authorization grant credential
        Returns:
        an OAuth2AccessTokenResponse that contains the access token credential
      • setRequestEntityConverter

        public void setRequestEntityConverter​(org.springframework.core.convert.converter.Converter<OAuth2ClientCredentialsGrantRequest,​org.springframework.http.RequestEntity<?>> requestEntityConverter)
        Sets the Converter used for converting the OAuth2ClientCredentialsGrantRequest to a RequestEntity representation of the OAuth 2.0 Access Token Request.
        Parameters:
        requestEntityConverter - the Converter used for converting to a RequestEntity representation of the Access Token Request
      • setRestOperations

        public void setRestOperations​(org.springframework.web.client.RestOperations restOperations)
        Sets the RestOperations used when requesting the OAuth 2.0 Access Token Response.

        NOTE: At a minimum, the supplied restOperations must be configured with the following:

        1. HttpMessageConverter's - FormHttpMessageConverter and OAuth2AccessTokenResponseHttpMessageConverter
        2. ResponseErrorHandler - OAuth2ErrorResponseErrorHandler
        Parameters:
        restOperations - the RestOperations used when requesting the Access Token Response