Uses of Class
org.springframework.security.oauth2.provider.TokenRequest

Packages that use TokenRequest
org.springframework.security.oauth2.provider   
org.springframework.security.oauth2.provider.client   
org.springframework.security.oauth2.provider.code   
org.springframework.security.oauth2.provider.implicit   
org.springframework.security.oauth2.provider.password   
org.springframework.security.oauth2.provider.refresh   
org.springframework.security.oauth2.provider.token   
 

Uses of TokenRequest in org.springframework.security.oauth2.provider
 

Methods in org.springframework.security.oauth2.provider that return TokenRequest
 TokenRequest DefaultOAuth2RequestFactory.createTokenRequest(AuthorizationRequest authorizationRequest, String grantType)
           
 TokenRequest OAuth2RequestFactory.createTokenRequest(AuthorizationRequest authorizationRequest, String grantType)
          Create a new TokenRequest from an AuthorizationRequest.
 TokenRequest DefaultOAuth2RequestFactory.createTokenRequest(Map<String,String> requestParameters, ClientDetails authenticatedClient)
           
 TokenRequest OAuth2RequestFactory.createTokenRequest(Map<String,String> requestParameters, ClientDetails authenticatedClient)
          Create a new TokenRequest by extracting the needed information from the incoming request parameter map.
 

Methods in org.springframework.security.oauth2.provider with parameters of type TokenRequest
 OAuth2Request DefaultOAuth2RequestFactory.createOAuth2Request(ClientDetails client, TokenRequest tokenRequest)
           
 OAuth2Request OAuth2RequestFactory.createOAuth2Request(ClientDetails client, TokenRequest tokenRequest)
          Create a new OAuth2Request by extracting the needed information from the current TokenRequest object.
 OAuth2AccessToken TokenGranter.grant(String grantType, TokenRequest tokenRequest)
           
 OAuth2AccessToken CompositeTokenGranter.grant(String grantType, TokenRequest tokenRequest)
           
 void DefaultOAuth2RequestValidator.validateScope(TokenRequest tokenRequest, ClientDetails client)
           
 void OAuth2RequestValidator.validateScope(TokenRequest tokenRequest, ClientDetails client)
          Ensure that the client has requested a valid set of scopes.
 

Uses of TokenRequest in org.springframework.security.oauth2.provider.client
 

Methods in org.springframework.security.oauth2.provider.client with parameters of type TokenRequest
 OAuth2AccessToken ClientCredentialsTokenGranter.grant(String grantType, TokenRequest tokenRequest)
           
 

Uses of TokenRequest in org.springframework.security.oauth2.provider.code
 

Methods in org.springframework.security.oauth2.provider.code with parameters of type TokenRequest
protected  OAuth2Authentication AuthorizationCodeTokenGranter.getOAuth2Authentication(ClientDetails client, TokenRequest tokenRequest)
           
 

Uses of TokenRequest in org.springframework.security.oauth2.provider.implicit
 

Fields in org.springframework.security.oauth2.provider.implicit with type parameters of type TokenRequest
protected  ConcurrentHashMap<TokenRequest,OAuth2Request> InMemoryImplicitGrantService.requestStore
           
 

Methods in org.springframework.security.oauth2.provider.implicit with parameters of type TokenRequest
protected  OAuth2Authentication ImplicitTokenGranter.getOAuth2Authentication(ClientDetails client, TokenRequest clientToken)
           
 OAuth2Request ImplicitGrantService.remove(TokenRequest tokenRequest)
          Look up and return the OAuth2Request associated with the given TokenRequest.
 OAuth2Request InMemoryImplicitGrantService.remove(TokenRequest tokenRequest)
           
 void ImplicitGrantService.store(OAuth2Request originalRequest, TokenRequest tokenRequest)
          Save an association between an OAuth2Request and a TokenRequest.
 void InMemoryImplicitGrantService.store(OAuth2Request originalRequest, TokenRequest tokenRequest)
           
 

Uses of TokenRequest in org.springframework.security.oauth2.provider.password
 

Methods in org.springframework.security.oauth2.provider.password with parameters of type TokenRequest
protected  OAuth2Authentication ResourceOwnerPasswordTokenGranter.getOAuth2Authentication(ClientDetails client, TokenRequest tokenRequest)
           
 

Uses of TokenRequest in org.springframework.security.oauth2.provider.refresh
 

Methods in org.springframework.security.oauth2.provider.refresh with parameters of type TokenRequest
protected  OAuth2AccessToken RefreshTokenGranter.getAccessToken(ClientDetails client, TokenRequest tokenRequest)
           
 

Uses of TokenRequest in org.springframework.security.oauth2.provider.token
 

Methods in org.springframework.security.oauth2.provider.token with parameters of type TokenRequest
protected  OAuth2AccessToken AbstractTokenGranter.getAccessToken(ClientDetails client, TokenRequest tokenRequest)
           
protected  OAuth2Authentication AbstractTokenGranter.getOAuth2Authentication(ClientDetails client, TokenRequest tokenRequest)
           
 OAuth2AccessToken AbstractTokenGranter.grant(String grantType, TokenRequest tokenRequest)
           
 OAuth2AccessToken AuthorizationServerTokenServices.refreshAccessToken(String refreshToken, TokenRequest tokenRequest)
          Refresh an access token.
 OAuth2AccessToken DefaultTokenServices.refreshAccessToken(String refreshTokenValue, TokenRequest tokenRequest)
           
 OAuth2AccessToken JwtTokenServices.refreshAccessToken(String refreshTokenValue, TokenRequest request)
           
 



Copyright © 2013. All rights reserved.