Package | Description |
---|---|
org.springframework.security.config.annotation.web.configurers | |
org.springframework.security.web.authentication.preauth |
Support for "pre-authenticated" scenarios, where Spring Security assumes the incoming request has already been
authenticated by some externally configured system.
|
Modifier and Type | Method and Description |
---|---|
JeeConfigurer<H> |
JeeConfigurer.authenticatedUserDetailsService(AuthenticationUserDetailsService<PreAuthenticatedAuthenticationToken> authenticatedUserDetailsService)
Specifies the
AuthenticationUserDetailsService that is used with
the PreAuthenticatedAuthenticationProvider . |
X509Configurer<H> |
X509Configurer.authenticationUserDetailsService(AuthenticationUserDetailsService<PreAuthenticatedAuthenticationToken> authenticationUserDetailsService)
Specifies the
AuthenticationUserDetailsService to use. |
Modifier and Type | Method and Description |
---|---|
UserDetails |
PreAuthenticatedGrantedAuthoritiesUserDetailsService.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.
|
Modifier and Type | Method and Description |
---|---|
void |
PreAuthenticatedAuthenticationProvider.setPreAuthenticatedUserDetailsService(AuthenticationUserDetailsService<PreAuthenticatedAuthenticationToken> uds)
Set the AuthenticatedUserDetailsService to be used to load the
UserDetails for the authenticated user. |
Copyright © 2019. All rights reserved.