Class OAuth2AuthenticationToken

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

public class OAuth2AuthenticationToken extends org.springframework.security.authentication.AbstractAuthenticationToken
An implementation of an AbstractAuthenticationToken that represents an OAuth 2.0 Authentication.

The Authentication associates an OAuth2User Principal to the identifier of the Authorized Client, which the End-User (Principal) granted authorization to so that it can access its protected resources at the UserInfo Endpoint.

Since:
5.0
See Also:
  • Constructor Details

    • OAuth2AuthenticationToken

      public OAuth2AuthenticationToken(org.springframework.security.oauth2.core.user.OAuth2User principal, Collection<? extends org.springframework.security.core.GrantedAuthority> authorities, String authorizedClientRegistrationId)
      Constructs an OAuth2AuthenticationToken using the provided parameters.
      Parameters:
      principal - the user Principal registered with the OAuth 2.0 Provider
      authorities - the authorities granted to the user
      authorizedClientRegistrationId - the registration identifier of the Authorized Client
    • OAuth2AuthenticationToken

      protected OAuth2AuthenticationToken(OAuth2AuthenticationToken.Builder<?> builder)
  • Method Details

    • getPrincipal

      public org.springframework.security.oauth2.core.user.OAuth2User getPrincipal()
    • getCredentials

      public Object getCredentials()
    • getAuthorizedClientRegistrationId

      public String getAuthorizedClientRegistrationId()
      Returns the registration identifier of the Authorized Client.
      Returns:
      the registration identifier of the Authorized Client.
    • toBuilder

      public OAuth2AuthenticationToken.Builder<?> toBuilder()