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

Packages that use AuthorizationRequest
org.springframework.security.oauth2.provider   
org.springframework.security.oauth2.provider.approval   
 

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

Methods in org.springframework.security.oauth2.provider that return AuthorizationRequest
 AuthorizationRequest DefaultOAuth2RequestFactory.createAuthorizationRequest(Map<String,String> authorizationParameters)
           
 AuthorizationRequest OAuth2RequestFactory.createAuthorizationRequest(Map<String,String> authorizationParameters)
          Create a new AuthorizationRequest extracting all the needed information from the incoming parameter map, and initializing all individual fields on the AuthorizationRequest to reasonable values.
 

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

Uses of AuthorizationRequest in org.springframework.security.oauth2.provider.approval
 

Methods in org.springframework.security.oauth2.provider.approval that return AuthorizationRequest
 AuthorizationRequest UserApprovalHandler.checkForPreApproval(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
           Provides a hook for allowing requests to be pre-approved (skipping the User Approval Page).
 AuthorizationRequest DefaultUserApprovalHandler.checkForPreApproval(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
           
 AuthorizationRequest TokenStoreUserApprovalHandler.checkForPreApproval(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
           
 AuthorizationRequest ApprovalStoreUserApprovalHandler.checkForPreApproval(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
           
 AuthorizationRequest UserApprovalHandler.updateAfterApproval(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
           Provides an opportunity to update the authorization request before it is checked for approval in cases where the incoming approval parameters contain richer information than just true/false (e.g.
 AuthorizationRequest DefaultUserApprovalHandler.updateAfterApproval(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
           
 AuthorizationRequest TokenStoreUserApprovalHandler.updateAfterApproval(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
           
 AuthorizationRequest ApprovalStoreUserApprovalHandler.updateAfterApproval(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
          Requires the authorization request to be explicitly approved, including all individual scopes, and the user to be authenticated.
 

Methods in org.springframework.security.oauth2.provider.approval with parameters of type AuthorizationRequest
 AuthorizationRequest UserApprovalHandler.checkForPreApproval(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
           Provides a hook for allowing requests to be pre-approved (skipping the User Approval Page).
 AuthorizationRequest DefaultUserApprovalHandler.checkForPreApproval(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
           
 AuthorizationRequest TokenStoreUserApprovalHandler.checkForPreApproval(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
           
 AuthorizationRequest ApprovalStoreUserApprovalHandler.checkForPreApproval(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
           
 boolean UserApprovalHandler.isApproved(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
           Tests whether the specified authorization request has been approved by the current user (if there is one).
 boolean DefaultUserApprovalHandler.isApproved(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
          Basic implementation just requires the authorization request to be explicitly approved and the user to be authenticated.
 boolean TokenStoreUserApprovalHandler.isApproved(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
          Basic implementation just requires the authorization request to be explicitly approved and the user to be authenticated.
 boolean ApprovalStoreUserApprovalHandler.isApproved(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
           
 AuthorizationRequest UserApprovalHandler.updateAfterApproval(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
           Provides an opportunity to update the authorization request before it is checked for approval in cases where the incoming approval parameters contain richer information than just true/false (e.g.
 AuthorizationRequest DefaultUserApprovalHandler.updateAfterApproval(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
           
 AuthorizationRequest TokenStoreUserApprovalHandler.updateAfterApproval(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
           
 AuthorizationRequest ApprovalStoreUserApprovalHandler.updateAfterApproval(AuthorizationRequest authorizationRequest, org.springframework.security.core.Authentication userAuthentication)
          Requires the authorization request to be explicitly approved, including all individual scopes, and the user to be authenticated.
 



Copyright © 2013. All rights reserved.