public class PreAuthenticatedGrantedAuthoritiesUserDetailsService extends Object implements org.springframework.security.core.userdetails.AuthenticationUserDetailsService<PreAuthenticatedAuthenticationToken>
This AuthenticationUserDetailsService implementation creates a UserDetails object based solely on the information contained in the given PreAuthenticatedAuthenticationToken. The user name is set to the name as returned by PreAuthenticatedAuthenticationToken.getName(), the password is set to a fixed dummy value (it will not be used by the PreAuthenticatedAuthenticationProvider anyway), and the Granted Authorities are retrieved from the details object as returned by PreAuthenticatedAuthenticationToken.getDetails().
The details object as returned by PreAuthenticatedAuthenticationToken.getDetails() must implement the
GrantedAuthoritiesContainer
interface for this implementation to work.
Constructor and Description |
---|
PreAuthenticatedGrantedAuthoritiesUserDetailsService() |
Modifier and Type | Method and Description |
---|---|
protected org.springframework.security.core.userdetails.UserDetails |
createuserDetails(org.springframework.security.core.Authentication token,
Collection<? extends org.springframework.security.core.GrantedAuthority> authorities)
Deprecated.
|
protected org.springframework.security.core.userdetails.UserDetails |
createUserDetails(org.springframework.security.core.Authentication token,
Collection<? extends org.springframework.security.core.GrantedAuthority> authorities)
Creates the final UserDetails object.
|
org.springframework.security.core.userdetails.UserDetails |
loadUserDetails(PreAuthenticatedAuthenticationToken token)
Get a UserDetails object based on the user name contained in the given
token, and the GrantedAuthorities as returned by the
GrantedAuthoritiesContainer implementation as returned by
the token.getDetails() method.
|
public PreAuthenticatedGrantedAuthoritiesUserDetailsService()
public final org.springframework.security.core.userdetails.UserDetails loadUserDetails(PreAuthenticatedAuthenticationToken token) throws org.springframework.security.core.AuthenticationException
loadUserDetails
in interface org.springframework.security.core.userdetails.AuthenticationUserDetailsService<PreAuthenticatedAuthenticationToken>
org.springframework.security.core.AuthenticationException
protected org.springframework.security.core.userdetails.UserDetails createUserDetails(org.springframework.security.core.Authentication token, Collection<? extends org.springframework.security.core.GrantedAuthority> authorities)
token
- the authentication request tokenauthorities
- the pre-authenticated authorities.@Deprecated protected org.springframework.security.core.userdetails.UserDetails createuserDetails(org.springframework.security.core.Authentication token, Collection<? extends org.springframework.security.core.GrantedAuthority> authorities)
createUserDetails(Authentication, Collection)
token
- the authentication request tokenauthorities
- the pre-authenticated authorities.