Class OAuth2AuthenticationToken
- java.lang.Object
-
- org.springframework.security.authentication.AbstractAuthenticationToken
-
- org.springframework.security.oauth2.client.authentication.OAuth2AuthenticationToken
-
- All Implemented Interfaces:
java.io.Serializable,java.security.Principal,org.springframework.security.core.Authentication,org.springframework.security.core.CredentialsContainer
public class OAuth2AuthenticationToken extends org.springframework.security.authentication.AbstractAuthenticationTokenAn implementation of anAbstractAuthenticationTokenthat represents an OAuth 2.0Authentication.The
Authenticationassociates anOAuth2UserPrincipalto the identifier of theAuthorized Client, which the End-User (Principal) granted authorization to so that it can access it's protected resources at the UserInfo Endpoint.- Since:
- 5.0
- See Also:
AbstractAuthenticationToken,OAuth2User,OAuth2AuthorizedClient, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OAuth2AuthenticationToken(org.springframework.security.oauth2.core.user.OAuth2User principal, java.util.Collection<? extends org.springframework.security.core.GrantedAuthority> authorities, java.lang.String authorizedClientRegistrationId)Constructs anOAuth2AuthenticationTokenusing the provided parameters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAuthorizedClientRegistrationId()Returns the registration identifier of theAuthorized Client.java.lang.ObjectgetCredentials()org.springframework.security.oauth2.core.user.OAuth2UsergetPrincipal()-
Methods inherited from class org.springframework.security.authentication.AbstractAuthenticationToken
equals, eraseCredentials, getAuthorities, getDetails, getName, hashCode, isAuthenticated, setAuthenticated, setDetails, toString
-
-
-
-
Constructor Detail
-
OAuth2AuthenticationToken
public OAuth2AuthenticationToken(org.springframework.security.oauth2.core.user.OAuth2User principal, java.util.Collection<? extends org.springframework.security.core.GrantedAuthority> authorities, java.lang.String authorizedClientRegistrationId)Constructs anOAuth2AuthenticationTokenusing the provided parameters.- Parameters:
principal- the userPrincipalregistered with the OAuth 2.0 Providerauthorities- the authorities granted to the userauthorizedClientRegistrationId- the registration identifier of theAuthorized Client
-
-
Method Detail
-
getPrincipal
public org.springframework.security.oauth2.core.user.OAuth2User getPrincipal()
-
getCredentials
public java.lang.Object getCredentials()
-
getAuthorizedClientRegistrationId
public java.lang.String getAuthorizedClientRegistrationId()
Returns the registration identifier of theAuthorized Client.- Returns:
- the registration identifier of the Authorized Client.
-
-