Serialized Form


Package org.springframework.security.oauth2.client

Class org.springframework.security.oauth2.client.DefaultOAuth2ClientContext extends Object implements Serializable

serialVersionUID: 914967629530462926L

Serialized Fields

accessToken

OAuth2AccessToken accessToken

accessTokenRequest

AccessTokenRequest accessTokenRequest

state

Map<K,V> state

Package org.springframework.security.oauth2.client.http

Class org.springframework.security.oauth2.client.http.AccessTokenRequiredException extends org.springframework.security.authentication.InsufficientAuthenticationException implements Serializable

Serialized Fields

resource

OAuth2ProtectedResourceDetails resource

Package org.springframework.security.oauth2.client.resource

Class org.springframework.security.oauth2.client.resource.OAuth2AccessDeniedException extends OAuth2Exception implements Serializable

Serialized Fields

resource

OAuth2ProtectedResourceDetails resource

Class org.springframework.security.oauth2.client.resource.UserApprovalRequiredException extends RuntimeException implements Serializable

Serialized Fields

approvalUri

String approvalUri

parameters

Map<K,V> parameters

clientId

String clientId

scope

List<E> scope

Class org.springframework.security.oauth2.client.resource.UserRedirectRequiredException extends RuntimeException implements Serializable

Serialized Fields

redirectUri

String redirectUri

requestParams

Map<K,V> requestParams

stateKey

String stateKey

stateToPreserve

Object stateToPreserve

Package org.springframework.security.oauth2.client.token

Class org.springframework.security.oauth2.client.token.DefaultAccessTokenRequest extends Object implements Serializable

serialVersionUID: 914967629530462926L

Serialized Fields

parameters

org.springframework.util.MultiValueMap<K,V> parameters

state

Object state

existingToken

OAuth2AccessToken existingToken

currentUri

String currentUri

cookie

String cookie

Package org.springframework.security.oauth2.common

Class org.springframework.security.oauth2.common.DefaultExpiringOAuth2RefreshToken extends DefaultOAuth2RefreshToken implements Serializable

serialVersionUID: 3449554332764129719L

Serialized Fields

expiration

Date expiration

Class org.springframework.security.oauth2.common.DefaultOAuth2AccessToken extends Object implements Serializable

serialVersionUID: 914967629530462926L

Serialized Fields

value

String value

expiration

Date expiration

tokenType

String tokenType

refreshToken

OAuth2RefreshToken refreshToken

scope

Set<E> scope

additionalInformation

Map<K,V> additionalInformation

Class org.springframework.security.oauth2.common.DefaultOAuth2RefreshToken extends Object implements Serializable

serialVersionUID: 8349970621900575838L

Serialized Fields

value

String value

Class org.springframework.security.oauth2.common.OAuth2AccessTokenJackson2Deserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<OAuth2AccessToken> implements Serializable


Package org.springframework.security.oauth2.common.exceptions

Class org.springframework.security.oauth2.common.exceptions.BadClientCredentialsException extends ClientAuthenticationException implements Serializable

Class org.springframework.security.oauth2.common.exceptions.ClientAuthenticationException extends OAuth2Exception implements Serializable

Class org.springframework.security.oauth2.common.exceptions.InsufficientScopeException extends OAuth2Exception implements Serializable

Class org.springframework.security.oauth2.common.exceptions.InvalidClientException extends ClientAuthenticationException implements Serializable

Class org.springframework.security.oauth2.common.exceptions.InvalidGrantException extends ClientAuthenticationException implements Serializable

Class org.springframework.security.oauth2.common.exceptions.InvalidRequestException extends ClientAuthenticationException implements Serializable

Class org.springframework.security.oauth2.common.exceptions.InvalidScopeException extends OAuth2Exception implements Serializable

Class org.springframework.security.oauth2.common.exceptions.InvalidTokenException extends ClientAuthenticationException implements Serializable

Class org.springframework.security.oauth2.common.exceptions.OAuth2Exception extends RuntimeException implements Serializable

Serialized Fields

additionalInformation

Map<K,V> additionalInformation

Class org.springframework.security.oauth2.common.exceptions.OAuth2ExceptionJackson2Deserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<OAuth2Exception> implements Serializable

Class org.springframework.security.oauth2.common.exceptions.RedirectMismatchException extends ClientAuthenticationException implements Serializable

Class org.springframework.security.oauth2.common.exceptions.SerializationException extends RuntimeException implements Serializable

Class org.springframework.security.oauth2.common.exceptions.UnapprovedClientAuthenticationException extends org.springframework.security.authentication.InsufficientAuthenticationException implements Serializable

Class org.springframework.security.oauth2.common.exceptions.UnauthorizedClientException extends ClientAuthenticationException implements Serializable

Class org.springframework.security.oauth2.common.exceptions.UnsupportedGrantTypeException extends OAuth2Exception implements Serializable

Class org.springframework.security.oauth2.common.exceptions.UnsupportedResponseTypeException extends OAuth2Exception implements Serializable

Class org.springframework.security.oauth2.common.exceptions.UserDeniedAuthorizationException extends OAuth2Exception implements Serializable


Package org.springframework.security.oauth2.provider

Class org.springframework.security.oauth2.provider.AuthorizationRequest extends org.springframework.security.oauth2.provider.BaseRequest implements Serializable

Serialized Fields

approvalParameters

Map<K,V> approvalParameters
Map to hold the original, unchanged parameter set submitted by a user to signal approval of the token grant approval. Once set this should not be modified.


state

String state
The value of the "state" parameter sent by the client in the request, if sent by the client. As this must be echoed back to the client unchanged, it should not be modified by any processing classes.


responseTypes

Set<E> responseTypes
Resolved requested response types initialized (by the OAuth2RequestFactory) with the response types originally requested.


resourceIds

Set<E> resourceIds
Resolved resource IDs. This set may change during request processing.


authorities

Collection<E> authorities
Resolved granted authorities for this request. May change during request processing.


approved

boolean approved
Whether the request has been approved by the end user (or other process). This will be altered by the User Approval Endpoint and/or the UserApprovalHandler as appropriate.


redirectUri

String redirectUri
The resolved redirect URI of this request. A URI may be present in the original request, in the authorizationParameters, or it may not be provided, in which case it will be defaulted (by processing classes) to the Client's default registered value.


extensions

Map<K,V> extensions
Extension point for custom processing classes which may wish to store additional information about the OAuth2 request. Since this class will create a serializable OAuth2Request, all members of this extension map must be serializable.

Class org.springframework.security.oauth2.provider.BaseClientDetails extends Object implements Serializable

Serialized Fields

clientId

String clientId

clientSecret

String clientSecret

scope

Set<E> scope

resourceIds

Set<E> resourceIds

authorizedGrantTypes

Set<E> authorizedGrantTypes

registeredRedirectUris

Set<E> registeredRedirectUris

autoApproveScopes

Set<E> autoApproveScopes

authorities

List<E> authorities

accessTokenValiditySeconds

Integer accessTokenValiditySeconds

refreshTokenValiditySeconds

Integer refreshTokenValiditySeconds

additionalInformation

Map<K,V> additionalInformation

Class org.springframework.security.oauth2.provider.ClientAlreadyExistsException extends ClientRegistrationException implements Serializable

Class org.springframework.security.oauth2.provider.ClientRegistrationException extends RuntimeException implements Serializable

Class org.springframework.security.oauth2.provider.NoSuchClientException extends ClientRegistrationException implements Serializable

Class org.springframework.security.oauth2.provider.OAuth2Authentication extends org.springframework.security.authentication.AbstractAuthenticationToken implements Serializable

serialVersionUID: -4809832298438307309L

Serialized Fields

storedRequest

OAuth2Request storedRequest

userAuthentication

org.springframework.security.core.Authentication userAuthentication

Class org.springframework.security.oauth2.provider.OAuth2Request extends org.springframework.security.oauth2.provider.BaseRequest implements Serializable

serialVersionUID: 1L

Serialized Fields

resourceIds

Set<E> resourceIds
Resolved resource IDs. This set may change during request processing.


authorities

Collection<E> authorities
Resolved granted authorities for this request. May change during request processing.


approved

boolean approved
Whether the request has been approved by the end user (or other process). This will be altered by the User Approval Endpoint and/or the UserApprovalHandler as appropriate.


redirectUri

String redirectUri
The resolved redirect URI of this request. A URI may be present in the original request, in the authorizationParameters, or it may not be provided, in which case it will be defaulted (by processing classes) to the Client's default registered value.


responseTypes

Set<E> responseTypes
Resolved requested response types initialized (by the OAuth2RequestFactory) with the response types originally requested.


extensions

Map<K,V> extensions
Extension point for custom processing classes which may wish to store additional information about the OAuth2 request. Since this class is serializable, all members of this map must also be serializable.

Class org.springframework.security.oauth2.provider.TokenRequest extends org.springframework.security.oauth2.provider.BaseRequest implements Serializable

Serialized Fields

grantType

String grantType

Package org.springframework.security.oauth2.provider.authentication

Class org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationDetails extends Object implements Serializable

serialVersionUID: -4809832298438307309L

Serialized Fields

remoteAddress

String remoteAddress

sessionId

String sessionId

tokenValue

String tokenValue

display

String display



Copyright © 2013. All rights reserved.