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

Packages that use OAuth2Request
org.springframework.security.oauth2.provider   
org.springframework.security.oauth2.provider.implicit   
org.springframework.security.oauth2.provider.token   
 

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

Methods in org.springframework.security.oauth2.provider that return OAuth2Request
 OAuth2Request AuthorizationRequest.createOAuth2Request()
           
 OAuth2Request DefaultOAuth2RequestFactory.createOAuth2Request(AuthorizationRequest request)
           
 OAuth2Request OAuth2RequestFactory.createOAuth2Request(AuthorizationRequest request)
          Create a new OAuth2Request by extracting the needed information from the current AuthorizationRequest object.
 OAuth2Request TokenRequest.createOAuth2Request(ClientDetails client)
           
 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.
 OAuth2Request OAuth2Request.createOAuth2Request(Map<String,String> parameters)
          Update the request parameters and return a new object with the same properties except the parameters.
 OAuth2Request OAuth2Authentication.getOAuth2Request()
          The authorization request containing details of the client application.
 

Constructors in org.springframework.security.oauth2.provider with parameters of type OAuth2Request
OAuth2Authentication(OAuth2Request clientAuthentication, org.springframework.security.core.Authentication userAuthentication)
          Construct an OAuth 2 authentication.
OAuth2Request(OAuth2Request other)
           
 

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

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

Methods in org.springframework.security.oauth2.provider.implicit that return OAuth2Request
 OAuth2Request ImplicitGrantService.remove(TokenRequest tokenRequest)
          Look up and return the OAuth2Request associated with the given TokenRequest.
 OAuth2Request InMemoryImplicitGrantService.remove(TokenRequest tokenRequest)
           
 

Methods in org.springframework.security.oauth2.provider.implicit with parameters of type OAuth2Request
 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 OAuth2Request in org.springframework.security.oauth2.provider.token
 

Methods in org.springframework.security.oauth2.provider.token with parameters of type OAuth2Request
protected  int DefaultTokenServices.getAccessTokenValiditySeconds(OAuth2Request clientAuth)
          The access token validity period in seconds
protected  int JwtTokenServices.getAccessTokenValiditySeconds(OAuth2Request authorizationRequest)
          The access token validity period in seconds
protected  int DefaultTokenServices.getRefreshTokenValiditySeconds(OAuth2Request clientAuth)
          The refresh token validity period in seconds
protected  int JwtTokenServices.getRefreshTokenValiditySeconds(OAuth2Request authorizationRequest)
          The refresh token validity period in seconds
protected  boolean DefaultTokenServices.isSupportRefreshToken(OAuth2Request clientAuth)
          Is a refresh token supported for this client (or the global setting if clientDetailsService is not set.
protected  boolean JwtTokenServices.isSupportRefreshToken(OAuth2Request authorizationRequest)
          Is a refresh token supported for this client (or the global setting if clientDetailsService is not set.
 



Copyright © 2013. All rights reserved.