Class BearerTokenAuthenticationToken

java.lang.Object
org.springframework.security.authentication.AbstractAuthenticationToken
org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken
All Implemented Interfaces:
Serializable, Principal, org.springframework.security.core.Authentication, org.springframework.security.core.CredentialsContainer

public class BearerTokenAuthenticationToken extends org.springframework.security.authentication.AbstractAuthenticationToken
An Authentication that contains a Bearer Token. Used by BearerTokenAuthenticationFilter to prepare an authentication attempt and supported by JwtAuthenticationProvider.
Since:
5.1
See Also:
  • Nested Class Summary

    Nested classes/interfaces inherited from class org.springframework.security.authentication.AbstractAuthenticationToken

    org.springframework.security.authentication.AbstractAuthenticationToken.AbstractAuthenticationBuilder<B extends org.springframework.security.authentication.AbstractAuthenticationToken.AbstractAuthenticationBuilder<B>>

    Nested classes/interfaces inherited from interface org.springframework.security.core.Authentication

    org.springframework.security.core.Authentication.Builder<B extends org.springframework.security.core.Authentication.Builder<B>>
  • Constructor Summary

    Constructors
    Constructor
    Description
    Create a BearerTokenAuthenticationToken using the provided parameter(s)
  • Method Summary

    Modifier and Type
    Method
    Description
     
     
    Get the Bearer Token

    Methods inherited from class org.springframework.security.authentication.AbstractAuthenticationToken

    equals, eraseCredentials, getAuthorities, getDetails, getName, hashCode, isAuthenticated, setAuthenticated, setDetails, toString

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface org.springframework.security.core.Authentication

    toBuilder

    Methods inherited from interface java.security.Principal

    implies
  • Constructor Details

    • BearerTokenAuthenticationToken

      public BearerTokenAuthenticationToken(String token)
      Create a BearerTokenAuthenticationToken using the provided parameter(s)
      Parameters:
      token - - the bearer token
  • Method Details

    • getToken

      public String getToken()
      Get the Bearer Token
      Returns:
      the token that proves the caller's authority to perform the HttpServletRequest
    • getCredentials

      public Object getCredentials()
    • getPrincipal

      public Object getPrincipal()