Package | Description |
---|---|
org.springframework.security.authentication |
Core classes and interfaces related to user authentication, which are used throughout Spring Security.
|
org.springframework.security.authentication.dao |
An
AuthenticationProvider which relies upon a data access object. |
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.
|
org.springframework.security.web.authentication.rememberme |
Support for remembering a user between different web sessions.
|
org.springframework.security.web.authentication.switchuser |
Provides HTTP-based "switch user" (su) capabilities.
|
Modifier and Type | Class and Description |
---|---|
class |
AccountStatusUserDetailsChecker |
Modifier and Type | Method and Description |
---|---|
protected UserDetailsChecker |
AbstractUserDetailsAuthenticationProvider.getPostAuthenticationChecks() |
protected UserDetailsChecker |
AbstractUserDetailsAuthenticationProvider.getPreAuthenticationChecks() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractUserDetailsAuthenticationProvider.setPostAuthenticationChecks(UserDetailsChecker postAuthenticationChecks) |
void |
AbstractUserDetailsAuthenticationProvider.setPreAuthenticationChecks(UserDetailsChecker preAuthenticationChecks)
Sets the policy will be used to verify the status of the loaded UserDetails before
validation of the credentials takes place.
|
Modifier and Type | Method and Description |
---|---|
void |
PreAuthenticatedAuthenticationProvider.setUserDetailsChecker(UserDetailsChecker userDetailsChecker)
Sets the strategy which will be used to validate the loaded UserDetails object
for the user.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractRememberMeServices.setUserDetailsChecker(UserDetailsChecker userDetailsChecker)
Sets the strategy to be used to validate the
UserDetails object obtained for
the user when processing a remember-me cookie to automatically log in a user. |
Modifier and Type | Method and Description |
---|---|
void |
SwitchUserFilter.setUserDetailsChecker(UserDetailsChecker userDetailsChecker) |
Copyright © 2019. All rights reserved.