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
 

Fields in org.springframework.security.oauth2.provider.code with type parameters of type OAuth2Authentication
protected  ConcurrentHashMap<String,OAuth2Authentication> InMemoryAuthorizationCodeServices.authorizationCodeStore
           
 

Methods in org.springframework.security.oauth2.provider.code that return OAuth2Authentication
 OAuth2Authentication RandomValueAuthorizationCodeServices.consumeAuthorizationCode(String code)
           
 OAuth2Authentication AuthorizationCodeServices.consumeAuthorizationCode(String code)
          Consume a authorization code.
protected  OAuth2Authentication AuthorizationCodeTokenGranter.getOAuth2Authentication(ClientDetails client, TokenRequest tokenRequest)
           
 OAuth2Authentication InMemoryAuthorizationCodeServices.remove(String code)
           
protected abstract  OAuth2Authentication RandomValueAuthorizationCodeServices.remove(String code)
           
 OAuth2Authentication JdbcAuthorizationCodeServices.remove(String code)
           
 

Methods in org.springframework.security.oauth2.provider.code with parameters of type OAuth2Authentication
 String RandomValueAuthorizationCodeServices.createAuthorizationCode(OAuth2Authentication authentication)
           
 String AuthorizationCodeServices.createAuthorizationCode(OAuth2Authentication authentication)
          Create a authorization code for the specified authentications.
protected  void InMemoryAuthorizationCodeServices.store(String code, OAuth2Authentication authentication)
           
protected abstract  void RandomValueAuthorizationCodeServices.store(String code, OAuth2Authentication authentication)
           
protected  void JdbcAuthorizationCodeServices.store(String code, OAuth2Authentication authentication)
           
 

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(ClientDetails client, TokenRequest 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(ClientDetails client, TokenRequest tokenRequest)
           
 

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)
           
 OAuth2Authentication AccessTokenConverter.extractAuthentication(Map<String,?> map)
          Recover an OAuth2Authentication from the converted access token.
 OAuth2Authentication DefaultAccessTokenConverter.extractAuthentication(Map<String,?> map)
           
protected  OAuth2Authentication AbstractTokenGranter.getOAuth2Authentication(ClientDetails client, TokenRequest tokenRequest)
           
 OAuth2Authentication DefaultTokenServices.loadAuthentication(String accessTokenValue)
           
 OAuth2Authentication ResourceServerTokenServices.loadAuthentication(String accessToken)
          Load the credentials for the specified access token.
 OAuth2Authentication JwtTokenServices.loadAuthentication(String 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
 Map<String,?> AccessTokenConverter.convertAccessToken(OAuth2AccessToken token, OAuth2Authentication authentication)
           
 Map<String,?> DefaultAccessTokenConverter.convertAccessToken(OAuth2AccessToken token, OAuth2Authentication authentication)
           
 OAuth2AccessToken AuthorizationServerTokenServices.createAccessToken(OAuth2Authentication authentication)
          Create an access token associated with the specified credentials.
 OAuth2AccessToken DefaultTokenServices.createAccessToken(OAuth2Authentication authentication)
           
 OAuth2AccessToken JwtTokenServices.createAccessToken(OAuth2Authentication authentication)
           
protected  String JwtTokenEnhancer.encode(OAuth2AccessToken accessToken, 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.
 OAuth2AccessToken JwtTokenEnhancer.enhance(OAuth2AccessToken accessToken, OAuth2Authentication authentication)
           
 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)
           
 OAuth2AccessToken JwtTokenServices.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 © 2013. All rights reserved.