Package | Description |
---|---|
org.springframework.security.config.annotation.web.configurers | |
org.springframework.security.web.authentication.logout |
Logout functionality based around a filter which handles a specific logout URL.
|
org.springframework.security.web.authentication.rememberme |
Support for remembering a user between different web sessions.
|
org.springframework.security.web.csrf | |
org.springframework.security.web.servletapi |
Populates a Servlet request with a new Spring Security compliant
HttpServletRequestWrapper . |
org.springframework.security.web.session |
Session management filters,
HttpSession events and publisher classes. |
Modifier and Type | Method and Description |
---|---|
LogoutConfigurer<H> |
LogoutConfigurer.addLogoutHandler(LogoutHandler logoutHandler)
Adds a
LogoutHandler . |
Modifier and Type | Class and Description |
---|---|
class |
CookieClearingLogoutHandler
A logout handler which clears a defined list of cookies, using the context path as the
cookie path.
|
class |
SecurityContextLogoutHandler
Performs a logout by modifying the
SecurityContextHolder . |
Constructor and Description |
---|
LogoutFilter(LogoutSuccessHandler logoutSuccessHandler,
LogoutHandler... handlers)
Constructor which takes a LogoutSuccessHandler instance to determine the target destination
after logging out.
|
LogoutFilter(String logoutSuccessUrl,
LogoutHandler... handlers) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractRememberMeServices
Base class for RememberMeServices implementations.
|
class |
PersistentTokenBasedRememberMeServices
RememberMeServices implementation based on Barry Jaspan's
Improved Persistent Login Cookie
Best Practice. |
class |
TokenBasedRememberMeServices
Identifies previously remembered users by a Base-64 encoded cookie.
|
Modifier and Type | Class and Description |
---|---|
class |
CsrfLogoutHandler
CsrfLogoutHandler is in charge of removing the CsrfToken upon
logout. |
Modifier and Type | Method and Description |
---|---|
void |
SecurityContextHolderAwareRequestFilter.setLogoutHandlers(List<LogoutHandler> logoutHandlers)
Sets the
LogoutHandler s used when integrating with HttpServletRequest with Servlet 3 APIs. |
Modifier and Type | Method and Description |
---|---|
void |
ConcurrentSessionFilter.setLogoutHandlers(LogoutHandler[] handlers) |
Copyright © 2019. All rights reserved.