Class AbstractAuthenticationToken
- java.lang.Object
- 
- org.springframework.security.authentication.AbstractAuthenticationToken
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.security.Principal,- Authentication,- CredentialsContainer
 - Direct Known Subclasses:
- AbstractOAuth2TokenAuthenticationToken,- AnonymousAuthenticationToken,- BearerTokenAuthenticationToken,- CasAssertionAuthenticationToken,- CasAuthenticationToken,- OAuth2AuthenticationToken,- OAuth2AuthorizationCodeAuthenticationToken,- OAuth2LoginAuthenticationToken,- OpenIDAuthenticationToken,- PreAuthenticatedAuthenticationToken,- RememberMeAuthenticationToken,- RunAsUserToken,- Saml2Authentication,- Saml2AuthenticationToken,- TestingAuthenticationToken,- UsernamePasswordAuthenticationToken
 
 public abstract class AbstractAuthenticationToken extends java.lang.Object implements Authentication, CredentialsContainer Base class forAuthenticationobjects.Implementations which use this class should be immutable. - See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description AbstractAuthenticationToken(java.util.Collection<? extends GrantedAuthority> authorities)Creates a token with the supplied array of authorities.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)voideraseCredentials()Checks thecredentials,principalanddetailsobjects, invoking theeraseCredentialsmethod on any which implementCredentialsContainer.java.util.Collection<GrantedAuthority>getAuthorities()Set by anAuthenticationManagerto indicate the authorities that the principal has been granted.java.lang.ObjectgetDetails()Stores additional details about the authentication request.java.lang.StringgetName()inthashCode()booleanisAuthenticated()Used to indicate toAbstractSecurityInterceptorwhether it should present the authentication token to theAuthenticationManager.voidsetAuthenticated(boolean authenticated)SeeAuthentication.isAuthenticated()for a full description.voidsetDetails(java.lang.Object details)java.lang.StringtoString()- 
Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface org.springframework.security.core.AuthenticationgetCredentials, getPrincipal
 
- 
 
- 
- 
- 
Constructor Detail- 
AbstractAuthenticationTokenpublic AbstractAuthenticationToken(java.util.Collection<? extends GrantedAuthority> authorities) Creates a token with the supplied array of authorities.- Parameters:
- authorities- the collection of GrantedAuthoritys for the principal represented by this authentication object.
 
 
- 
 - 
Method Detail- 
getAuthoritiespublic java.util.Collection<GrantedAuthority> getAuthorities() Description copied from interface:AuthenticationSet by anAuthenticationManagerto indicate the authorities that the principal has been granted. Note that classes should not rely on this value as being valid unless it has been set by a trustedAuthenticationManager.Implementations should ensure that modifications to the returned collection array do not affect the state of the Authentication object, or use an unmodifiable instance. - Specified by:
- getAuthoritiesin interface- Authentication
- Returns:
- the authorities granted to the principal, or an empty collection if the token has not been authenticated. Never null.
 
 - 
getNamepublic java.lang.String getName() - Specified by:
- getNamein interface- java.security.Principal
 
 - 
isAuthenticatedpublic boolean isAuthenticated() Description copied from interface:AuthenticationUsed to indicate toAbstractSecurityInterceptorwhether it should present the authentication token to theAuthenticationManager. Typically anAuthenticationManager(or, more often, one of itsAuthenticationProviders) will return an immutable authentication token after successful authentication, in which case that token can safely returntrueto this method. Returningtruewill improve performance, as calling theAuthenticationManagerfor every request will no longer be necessary.For security reasons, implementations of this interface should be very careful about returning truefrom this method unless they are either immutable, or have some way of ensuring the properties have not been changed since original creation.- Specified by:
- isAuthenticatedin interface- Authentication
- Returns:
- true if the token has been authenticated and the
 AbstractSecurityInterceptordoes not need to present the token to theAuthenticationManageragain for re-authentication.
 
 - 
setAuthenticatedpublic void setAuthenticated(boolean authenticated) Description copied from interface:AuthenticationSeeAuthentication.isAuthenticated()for a full description.Implementations should always allow this method to be called with a falseparameter, as this is used by various classes to specify the authentication token should not be trusted. If an implementation wishes to reject an invocation with atrueparameter (which would indicate the authentication token is trusted - a potential security risk) the implementation should throw anIllegalArgumentException.- Specified by:
- setAuthenticatedin interface- Authentication
- Parameters:
- authenticated-- trueif the token should be trusted (which may result in an exception) or- falseif the token should not be trusted
 
 - 
getDetailspublic java.lang.Object getDetails() Description copied from interface:AuthenticationStores additional details about the authentication request. These might be an IP address, certificate serial number etc.- Specified by:
- getDetailsin interface- Authentication
- Returns:
- additional details about the authentication request, or nullif not used
 
 - 
setDetailspublic void setDetails(java.lang.Object details) 
 - 
eraseCredentialspublic void eraseCredentials() Checks thecredentials,principalanddetailsobjects, invoking theeraseCredentialsmethod on any which implementCredentialsContainer.- Specified by:
- eraseCredentialsin interface- CredentialsContainer
 
 - 
equalspublic boolean equals(java.lang.Object obj) - Specified by:
- equalsin interface- java.security.Principal
- Overrides:
- equalsin class- java.lang.Object
 
 - 
hashCodepublic int hashCode() - Specified by:
- hashCodein interface- java.security.Principal
- Overrides:
- hashCodein class- java.lang.Object
 
 - 
toStringpublic java.lang.String toString() - Specified by:
- toStringin interface- java.security.Principal
- Overrides:
- toStringin class- java.lang.Object
 
 
- 
 
-