public class PreAuthenticatedAuthenticationToken
extends org.springframework.security.authentication.AbstractAuthenticationToken
Authentication implementation for pre-authenticated
authentication.| Constructor and Description |
|---|
PreAuthenticatedAuthenticationToken(Object aPrincipal,
Object aCredentials)
Constructor used for an authentication request.
|
PreAuthenticatedAuthenticationToken(Object aPrincipal,
Object aCredentials,
Collection<? extends org.springframework.security.core.GrantedAuthority> anAuthorities)
Constructor used for an authentication response.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
getCredentials()
Get the credentials
|
Object |
getPrincipal()
Get the principal
|
public PreAuthenticatedAuthenticationToken(Object aPrincipal, Object aCredentials)
Authentication.isAuthenticated() will return
false.aPrincipal - The pre-authenticated principalaCredentials - The pre-authenticated credentialspublic PreAuthenticatedAuthenticationToken(Object aPrincipal, Object aCredentials, Collection<? extends org.springframework.security.core.GrantedAuthority> anAuthorities)
Authentication.isAuthenticated() will return
true.aPrincipal - The authenticated principalanAuthorities - The granted authorities