Package | Description |
---|---|
org.springframework.security.config.annotation.web.configurers | |
org.springframework.security.web.authentication |
Authentication processing mechanisms, which respond to the submission of authentication
credentials using various protocols (eg BASIC, CAS, form login etc).
|
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 | Method and Description |
---|---|
RememberMeConfigurer<H> |
RememberMeConfigurer.authenticationSuccessHandler(AuthenticationSuccessHandler authenticationSuccessHandler)
Allows control over the destination a remembered user is sent to when they are successfully authenticated.
|
T |
AbstractAuthenticationFilterConfigurer.successHandler(AuthenticationSuccessHandler successHandler)
Specifies the
AuthenticationSuccessHandler to be used. |
Modifier and Type | Class and Description |
---|---|
class |
SavedRequestAwareAuthenticationSuccessHandler
An authentication success strategy which can make use of the
DefaultSavedRequest which may have been stored in
the session by the ExceptionTranslationFilter . |
class |
SimpleUrlAuthenticationSuccessHandler
AuthenticationSuccessHandler which can be configured with a default URL which users should be
sent to upon successful authentication.
|
Modifier and Type | Method and Description |
---|---|
protected AuthenticationSuccessHandler |
AbstractAuthenticationProcessingFilter.getSuccessHandler() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractAuthenticationProcessingFilter.setAuthenticationSuccessHandler(AuthenticationSuccessHandler successHandler)
Sets the strategy used to handle a successful authentication.
|
Modifier and Type | Method and Description |
---|---|
void |
RememberMeAuthenticationFilter.setAuthenticationSuccessHandler(AuthenticationSuccessHandler successHandler)
Allows control over the destination a remembered user is sent to when they are successfully authenticated.
|
Modifier and Type | Method and Description |
---|---|
void |
SwitchUserFilter.setSuccessHandler(AuthenticationSuccessHandler successHandler)
Used to define custom behaviour on a successful switch or exit user.
|
Copyright © 2019. All rights reserved.