Uses of Interface
org.springframework.security.oauth2.common.OAuth2AccessToken

Packages that use OAuth2AccessToken
org.springframework.security.oauth2.client   
org.springframework.security.oauth2.client.test   
org.springframework.security.oauth2.client.token   
org.springframework.security.oauth2.client.token.grant.client   
org.springframework.security.oauth2.client.token.grant.code   
org.springframework.security.oauth2.client.token.grant.implicit   
org.springframework.security.oauth2.client.token.grant.password   
org.springframework.security.oauth2.common   
org.springframework.security.oauth2.http.converter   
org.springframework.security.oauth2.http.converter.jaxb   
org.springframework.security.oauth2.provider   
org.springframework.security.oauth2.provider.client   
org.springframework.security.oauth2.provider.endpoint   
org.springframework.security.oauth2.provider.refresh   
org.springframework.security.oauth2.provider.token   
 

Uses of OAuth2AccessToken in org.springframework.security.oauth2.client
 

Methods in org.springframework.security.oauth2.client that return OAuth2AccessToken
protected  OAuth2AccessToken OAuth2RestTemplate.acquireAccessToken(OAuth2ClientContext oauth2Context)
           
 OAuth2AccessToken OAuth2RestOperations.getAccessToken()
           
 OAuth2AccessToken OAuth2ClientContext.getAccessToken()
           
 OAuth2AccessToken OAuth2RestTemplate.getAccessToken()
          Acquire or renew an access token for the current context if necessary.
 OAuth2AccessToken DefaultOAuth2ClientContext.getAccessToken()
           
 

Methods in org.springframework.security.oauth2.client with parameters of type OAuth2AccessToken
protected  URI OAuth2RestTemplate.appendQueryParameter(URI uri, OAuth2AccessToken accessToken)
           
 void OAuth2ClientContext.setAccessToken(OAuth2AccessToken accessToken)
           
 void DefaultOAuth2ClientContext.setAccessToken(OAuth2AccessToken accessToken)
           
 

Constructors in org.springframework.security.oauth2.client with parameters of type OAuth2AccessToken
DefaultOAuth2ClientContext(OAuth2AccessToken accessToken)
           
 

Uses of OAuth2AccessToken in org.springframework.security.oauth2.client.test
 

Methods in org.springframework.security.oauth2.client.test that return OAuth2AccessToken
 OAuth2AccessToken OAuth2ContextSetup.getAccessToken()
          Get the current access token.
 

Uses of OAuth2AccessToken in org.springframework.security.oauth2.client.token
 

Methods in org.springframework.security.oauth2.client.token that return OAuth2AccessToken
 OAuth2AccessToken JdbcClientTokenServices.getAccessToken(OAuth2ProtectedResourceDetails resource, org.springframework.security.core.Authentication authentication)
           
 OAuth2AccessToken ClientTokenServices.getAccessToken(OAuth2ProtectedResourceDetails resource, org.springframework.security.core.Authentication authentication)
          Retrieve the access token for a given resource and user authentication (my be null).
 OAuth2AccessToken DefaultAccessTokenRequest.getExistingToken()
           
 OAuth2AccessToken AccessTokenRequest.getExistingToken()
           
 OAuth2AccessToken AccessTokenProviderChain.obtainAccessToken(OAuth2ProtectedResourceDetails resource, AccessTokenRequest request)
           
 OAuth2AccessToken AccessTokenProvider.obtainAccessToken(OAuth2ProtectedResourceDetails details, AccessTokenRequest parameters)
          Obtain a new access token for the specified protected resource.
protected  OAuth2AccessToken AccessTokenProviderChain.obtainNewAccessTokenInternal(OAuth2ProtectedResourceDetails details, AccessTokenRequest request)
           
 OAuth2AccessToken AccessTokenProviderChain.refreshAccessToken(OAuth2ProtectedResourceDetails resource, OAuth2RefreshToken refreshToken, AccessTokenRequest request)
          Obtain a new access token for the specified resource using the refresh token.
 OAuth2AccessToken AccessTokenProvider.refreshAccessToken(OAuth2ProtectedResourceDetails resource, OAuth2RefreshToken refreshToken, AccessTokenRequest request)
           
protected  OAuth2AccessToken OAuth2AccessTokenSupport.retrieveToken(org.springframework.util.MultiValueMap<String,String> form, org.springframework.http.HttpHeaders headers, OAuth2ProtectedResourceDetails resource)
           
 

Methods in org.springframework.security.oauth2.client.token that return types with arguments of type OAuth2AccessToken
protected  org.springframework.web.client.ResponseExtractor<OAuth2AccessToken> OAuth2AccessTokenSupport.getResponseExtractor()
           
 

Methods in org.springframework.security.oauth2.client.token with parameters of type OAuth2AccessToken
 void JdbcClientTokenServices.saveAccessToken(OAuth2ProtectedResourceDetails resource, org.springframework.security.core.Authentication authentication, OAuth2AccessToken accessToken)
           
 void ClientTokenServices.saveAccessToken(OAuth2ProtectedResourceDetails resource, org.springframework.security.core.Authentication authentication, OAuth2AccessToken accessToken)
          Save or update the access token for this resource and authentication (may be null).
 void DefaultAccessTokenRequest.setExistingToken(OAuth2AccessToken existingToken)
           
 void AccessTokenRequest.setExistingToken(OAuth2AccessToken existingToken)
           
 

Uses of OAuth2AccessToken in org.springframework.security.oauth2.client.token.grant.client
 

Methods in org.springframework.security.oauth2.client.token.grant.client that return OAuth2AccessToken
 OAuth2AccessToken ClientCredentialsAccessTokenProvider.obtainAccessToken(OAuth2ProtectedResourceDetails details, AccessTokenRequest request)
           
 OAuth2AccessToken ClientCredentialsAccessTokenProvider.refreshAccessToken(OAuth2ProtectedResourceDetails resource, OAuth2RefreshToken refreshToken, AccessTokenRequest request)
           
 

Uses of OAuth2AccessToken in org.springframework.security.oauth2.client.token.grant.code
 

Methods in org.springframework.security.oauth2.client.token.grant.code that return OAuth2AccessToken
 OAuth2AccessToken AuthorizationCodeAccessTokenProvider.obtainAccessToken(OAuth2ProtectedResourceDetails details, AccessTokenRequest request)
           
 OAuth2AccessToken AuthorizationCodeAccessTokenProvider.refreshAccessToken(OAuth2ProtectedResourceDetails resource, OAuth2RefreshToken refreshToken, AccessTokenRequest request)
           
 

Uses of OAuth2AccessToken in org.springframework.security.oauth2.client.token.grant.implicit
 

Methods in org.springframework.security.oauth2.client.token.grant.implicit that return OAuth2AccessToken
 OAuth2AccessToken ImplicitAccessTokenProvider.obtainAccessToken(OAuth2ProtectedResourceDetails details, AccessTokenRequest request)
           
 OAuth2AccessToken ImplicitAccessTokenProvider.refreshAccessToken(OAuth2ProtectedResourceDetails resource, OAuth2RefreshToken refreshToken, AccessTokenRequest request)
           
 

Methods in org.springframework.security.oauth2.client.token.grant.implicit that return types with arguments of type OAuth2AccessToken
protected  org.springframework.web.client.ResponseExtractor<OAuth2AccessToken> ImplicitAccessTokenProvider.getResponseExtractor()
           
 

Uses of OAuth2AccessToken in org.springframework.security.oauth2.client.token.grant.password
 

Methods in org.springframework.security.oauth2.client.token.grant.password that return OAuth2AccessToken
 OAuth2AccessToken ResourceOwnerPasswordAccessTokenProvider.obtainAccessToken(OAuth2ProtectedResourceDetails details, AccessTokenRequest request)
           
 OAuth2AccessToken ResourceOwnerPasswordAccessTokenProvider.refreshAccessToken(OAuth2ProtectedResourceDetails resource, OAuth2RefreshToken refreshToken, AccessTokenRequest request)
           
 

Uses of OAuth2AccessToken in org.springframework.security.oauth2.common
 

Classes in org.springframework.security.oauth2.common that implement OAuth2AccessToken
 class DefaultOAuth2AccessToken
          Basic access token for OAuth 2.
 

Methods in org.springframework.security.oauth2.common that return OAuth2AccessToken
 OAuth2AccessToken OAuth2AccessTokenJackson2Deserializer.deserialize(com.fasterxml.jackson.core.JsonParser jp, com.fasterxml.jackson.databind.DeserializationContext ctxt)
           
 OAuth2AccessToken OAuth2AccessTokenJackson1Deserializer.deserialize(org.codehaus.jackson.JsonParser jp, org.codehaus.jackson.map.DeserializationContext ctxt)
           
static OAuth2AccessToken DefaultOAuth2AccessToken.valueOf(Map<String,String> tokenParams)
           
 

Methods in org.springframework.security.oauth2.common with parameters of type OAuth2AccessToken
 void OAuth2AccessTokenJackson1Serializer.serialize(OAuth2AccessToken token, org.codehaus.jackson.JsonGenerator jgen, org.codehaus.jackson.map.SerializerProvider provider)
           
 void OAuth2AccessTokenJackson2Serializer.serialize(OAuth2AccessToken token, com.fasterxml.jackson.core.JsonGenerator jgen, com.fasterxml.jackson.databind.SerializerProvider provider)
           
 

Constructors in org.springframework.security.oauth2.common with parameters of type OAuth2AccessToken
DefaultOAuth2AccessToken(OAuth2AccessToken accessToken)
          Copy constructor for access token.
 

Uses of OAuth2AccessToken in org.springframework.security.oauth2.http.converter
 

Methods in org.springframework.security.oauth2.http.converter that return OAuth2AccessToken
protected  OAuth2AccessToken FormOAuth2AccessTokenMessageConverter.readInternal(Class<? extends OAuth2AccessToken> clazz, org.springframework.http.HttpInputMessage inputMessage)
           
 

Methods in org.springframework.security.oauth2.http.converter with parameters of type OAuth2AccessToken
protected  void FormOAuth2AccessTokenMessageConverter.writeInternal(OAuth2AccessToken accessToken, org.springframework.http.HttpOutputMessage outputMessage)
           
 

Method parameters in org.springframework.security.oauth2.http.converter with type arguments of type OAuth2AccessToken
protected  OAuth2AccessToken FormOAuth2AccessTokenMessageConverter.readInternal(Class<? extends OAuth2AccessToken> clazz, org.springframework.http.HttpInputMessage inputMessage)
           
 

Uses of OAuth2AccessToken in org.springframework.security.oauth2.http.converter.jaxb
 

Methods in org.springframework.security.oauth2.http.converter.jaxb that return OAuth2AccessToken
protected  OAuth2AccessToken JaxbOAuth2AccessTokenMessageConverter.convertToExternal(org.springframework.security.oauth2.http.converter.jaxb.JaxbOAuth2AccessToken jaxbAccessToken)
           
 

Methods in org.springframework.security.oauth2.http.converter.jaxb with parameters of type OAuth2AccessToken
protected  org.springframework.security.oauth2.http.converter.jaxb.JaxbOAuth2AccessToken JaxbOAuth2AccessTokenMessageConverter.convertToInternal(OAuth2AccessToken accessToken)
           
 

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

Methods in org.springframework.security.oauth2.provider that return OAuth2AccessToken
 OAuth2AccessToken TokenGranter.grant(String grantType, TokenRequest tokenRequest)
           
 OAuth2AccessToken CompositeTokenGranter.grant(String grantType, TokenRequest tokenRequest)
           
 

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

Methods in org.springframework.security.oauth2.provider.client that return OAuth2AccessToken
 OAuth2AccessToken ClientCredentialsTokenGranter.grant(String grantType, TokenRequest tokenRequest)
           
 

Uses of OAuth2AccessToken in org.springframework.security.oauth2.provider.endpoint
 

Methods in org.springframework.security.oauth2.provider.endpoint that return types with arguments of type OAuth2AccessToken
 org.springframework.http.ResponseEntity<OAuth2AccessToken> TokenEndpoint.getAccessToken(Principal principal, Map<String,String> parameters)
           
 

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

Methods in org.springframework.security.oauth2.provider.refresh that return OAuth2AccessToken
protected  OAuth2AccessToken RefreshTokenGranter.getAccessToken(ClientDetails client, TokenRequest tokenRequest)
           
 

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

Methods in org.springframework.security.oauth2.provider.token that return OAuth2AccessToken
 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  OAuth2AccessToken JdbcTokenStore.deserializeAccessToken(byte[] token)
           
 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)
           
 OAuth2AccessToken AccessTokenConverter.extractAccessToken(String value, Map<String,?> map)
          Recover an access token from the converted value.
 OAuth2AccessToken DefaultAccessTokenConverter.extractAccessToken(String value, Map<String,?> map)
           
protected  OAuth2AccessToken AbstractTokenGranter.getAccessToken(ClientDetails client, TokenRequest tokenRequest)
           
 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)
           
 OAuth2AccessToken AbstractTokenGranter.grant(String grantType, TokenRequest tokenRequest)
           
 OAuth2AccessToken TokenStore.readAccessToken(String tokenValue)
          Read an access token from the store.
 OAuth2AccessToken JdbcTokenStore.readAccessToken(String tokenValue)
           
 OAuth2AccessToken DefaultTokenServices.readAccessToken(String accessToken)
           
 OAuth2AccessToken ResourceServerTokenServices.readAccessToken(String accessToken)
          Retrieve the full access token details from just the value.
 OAuth2AccessToken InMemoryTokenStore.readAccessToken(String tokenValue)
           
 OAuth2AccessToken JwtTokenServices.readAccessToken(String token)
           
 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)
           
 

Methods in org.springframework.security.oauth2.provider.token that return types with arguments of type OAuth2AccessToken
 Collection<OAuth2AccessToken> TokenStore.findTokensByClientId(String clientId)
           
 Collection<OAuth2AccessToken> JdbcTokenStore.findTokensByClientId(String clientId)
           
 Collection<OAuth2AccessToken> DefaultTokenServices.findTokensByClientId(String clientId)
           
 Collection<OAuth2AccessToken> InMemoryTokenStore.findTokensByClientId(String clientId)
           
 Collection<OAuth2AccessToken> TokenStore.findTokensByUserName(String userName)
           
 Collection<OAuth2AccessToken> JdbcTokenStore.findTokensByUserName(String userName)
           
 Collection<OAuth2AccessToken> DefaultTokenServices.findTokensByUserName(String userName)
           
 Collection<OAuth2AccessToken> InMemoryTokenStore.findTokensByUserName(String userName)
           
 

Methods in org.springframework.security.oauth2.provider.token with parameters of type OAuth2AccessToken
 Map<String,?> AccessTokenConverter.convertAccessToken(OAuth2AccessToken token, OAuth2Authentication authentication)
           
 Map<String,?> DefaultAccessTokenConverter.convertAccessToken(OAuth2AccessToken token, 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)
           
protected  boolean JwtTokenServices.isExpired(OAuth2AccessToken expiringToken)
          Utility method to check if a token is expired.
 OAuth2Authentication TokenStore.readAuthentication(OAuth2AccessToken token)
          Read the authentication stored under the specified token value.
 OAuth2Authentication JdbcTokenStore.readAuthentication(OAuth2AccessToken token)
           
 OAuth2Authentication InMemoryTokenStore.readAuthentication(OAuth2AccessToken token)
           
 void TokenStore.removeAccessToken(OAuth2AccessToken token)
          Remove an access token from the database.
 void JdbcTokenStore.removeAccessToken(OAuth2AccessToken token)
           
 void InMemoryTokenStore.removeAccessToken(OAuth2AccessToken accessToken)
           
protected  byte[] JdbcTokenStore.serializeAccessToken(OAuth2AccessToken token)
           
 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)
           
 



Copyright © 2013. All rights reserved.