Class BearerTokenAuthenticationToken
- java.lang.Object
-
- org.springframework.security.authentication.AbstractAuthenticationToken
-
- org.springframework.security.oauth2.server.resource.BearerTokenAuthenticationToken
-
- All Implemented Interfaces:
java.io.Serializable,java.security.Principal,org.springframework.security.core.Authentication,org.springframework.security.core.CredentialsContainer
public class BearerTokenAuthenticationToken extends org.springframework.security.authentication.AbstractAuthenticationTokenAnAuthenticationthat contains a Bearer Token. Used byBearerTokenAuthenticationFilterto prepare an authentication attempt and supported byJwtAuthenticationProvider.- Since:
- 5.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BearerTokenAuthenticationToken(java.lang.String token)Create aBearerTokenAuthenticationTokenusing the provided parameter(s)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetCredentials()java.lang.ObjectgetPrincipal()java.lang.StringgetToken()Get the Bearer Token-
Methods inherited from class org.springframework.security.authentication.AbstractAuthenticationToken
equals, eraseCredentials, getAuthorities, getDetails, getName, hashCode, isAuthenticated, setAuthenticated, setDetails, toString
-
-
-
-
Method Detail
-
getToken
public java.lang.String getToken()
Get the Bearer Token- Returns:
- the token that proves the caller's authority to perform the
HttpServletRequest
-
getCredentials
public java.lang.Object getCredentials()
-
getPrincipal
public java.lang.Object getPrincipal()
-
-