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

Packages that use OAuth2Authentication
org.springframework.security.oauth2.provider.code   
org.springframework.security.oauth2.provider.implicit   
org.springframework.security.oauth2.provider.password   
org.springframework.security.oauth2.provider.token   
 

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

Methods in org.springframework.security.oauth2.provider.code that return OAuth2Authentication
protected  OAuth2Authentication AuthorizationCodeTokenGranter.getOAuth2Authentication(AuthorizationRequest authorizationRequest)
           
 

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

Methods in org.springframework.security.oauth2.provider.implicit that return OAuth2Authentication
protected  OAuth2Authentication ImplicitTokenGranter.getOAuth2Authentication(AuthorizationRequest clientToken)
           
 

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

Methods in org.springframework.security.oauth2.provider.password that return OAuth2Authentication
protected  OAuth2Authentication ResourceOwnerPasswordTokenGranter.getOAuth2Authentication(AuthorizationRequest clientToken)
           
 

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

Methods in org.springframework.security.oauth2.provider.token that return OAuth2Authentication
protected  OAuth2Authentication JdbcTokenStore.deserializeAuthentication(byte[] authentication)
           
protected  OAuth2Authentication AbstractTokenGranter.getOAuth2Authentication(AuthorizationRequest authorizationRequest)
           
 OAuth2Authentication DefaultTokenServices.loadAuthentication(String accessTokenValue)
           
 OAuth2Authentication ResourceServerTokenServices.loadAuthentication(String accessToken)
          Load the credentials for the specified access token.
 OAuth2Authentication TokenStore.readAuthentication(OAuth2AccessToken token)
          Read the authentication stored under the specified token value.
 OAuth2Authentication JdbcTokenStore.readAuthentication(OAuth2AccessToken token)
           
 OAuth2Authentication InMemoryTokenStore.readAuthentication(OAuth2AccessToken token)
           
 OAuth2Authentication TokenStore.readAuthentication(String token)
          Read the authentication stored under the specified token value.
 OAuth2Authentication JdbcTokenStore.readAuthentication(String token)
           
 OAuth2Authentication InMemoryTokenStore.readAuthentication(String token)
           
 OAuth2Authentication TokenStore.readAuthenticationForRefreshToken(OAuth2RefreshToken token)
           
 OAuth2Authentication JdbcTokenStore.readAuthenticationForRefreshToken(OAuth2RefreshToken token)
           
 OAuth2Authentication InMemoryTokenStore.readAuthenticationForRefreshToken(OAuth2RefreshToken token)
           
 OAuth2Authentication JdbcTokenStore.readAuthenticationForRefreshToken(String value)
           
 OAuth2Authentication InMemoryTokenStore.readAuthenticationForRefreshToken(String token)
           
 

Methods in org.springframework.security.oauth2.provider.token with parameters of type OAuth2Authentication
 OAuth2AccessToken AuthorizationServerTokenServices.createAccessToken(OAuth2Authentication authentication)
          Create an access token associated with the specified credentials.
 OAuth2AccessToken DefaultTokenServices.createAccessToken(OAuth2Authentication authentication)
           
 OAuth2AccessToken TokenEnhancer.enhance(OAuth2AccessToken accessToken, OAuth2Authentication authentication)
          Provides an opportunity for customization of an access token (e.g.
 OAuth2AccessToken TokenEnhancerChain.enhance(OAuth2AccessToken accessToken, OAuth2Authentication authentication)
          Loop over the delegates passing the result into the next member of the chain.
 String DefaultAuthenticationKeyGenerator.extractKey(OAuth2Authentication authentication)
           
 String AuthenticationKeyGenerator.extractKey(OAuth2Authentication authentication)
           
 OAuth2AccessToken TokenStore.getAccessToken(OAuth2Authentication authentication)
          Retrieve an access token stored against the provided authentication key, if it exists.
 OAuth2AccessToken AuthorizationServerTokenServices.getAccessToken(OAuth2Authentication authentication)
          Retrieve an access token stored against the provided authentication key, if it exists.
 OAuth2AccessToken JdbcTokenStore.getAccessToken(OAuth2Authentication authentication)
           
 OAuth2AccessToken DefaultTokenServices.getAccessToken(OAuth2Authentication authentication)
           
 OAuth2AccessToken InMemoryTokenStore.getAccessToken(OAuth2Authentication authentication)
           
protected  byte[] JdbcTokenStore.serializeAuthentication(OAuth2Authentication authentication)
           
 void TokenStore.storeAccessToken(OAuth2AccessToken token, OAuth2Authentication authentication)
          Store an access token.
 void JdbcTokenStore.storeAccessToken(OAuth2AccessToken token, OAuth2Authentication authentication)
           
 void InMemoryTokenStore.storeAccessToken(OAuth2AccessToken token, OAuth2Authentication authentication)
           
 void TokenStore.storeRefreshToken(OAuth2RefreshToken refreshToken, OAuth2Authentication authentication)
          Store the specified refresh token in the database.
 void JdbcTokenStore.storeRefreshToken(OAuth2RefreshToken refreshToken, OAuth2Authentication authentication)
           
 void InMemoryTokenStore.storeRefreshToken(OAuth2RefreshToken refreshToken, OAuth2Authentication authentication)
           
 



Copyright © 2012. All Rights Reserved.