See: Description
Interface | Description |
---|---|
SecurityContextRepository |
Strategy used for persisting a
SecurityContext between requests. |
Class | Description |
---|---|
AbstractSecurityWebApplicationInitializer |
Registers the
DelegatingFilterProxy to use the springSecurityFilterChain before
any other registered Filter . |
HttpRequestResponseHolder |
Used to pass the incoming request to
SecurityContextRepository.loadContext(HttpRequestResponseHolder) , allowing the
method to swap the request for a wrapped version, as well as returning the
SecurityContext value. |
HttpSessionSecurityContextRepository |
A
SecurityContextRepository implementation which stores the security context in
the HttpSession between requests. |
NullSecurityContextRepository | |
SaveContextOnUpdateOrErrorResponseWrapper |
Base class for response wrappers which encapsulate the logic for storing a security
context and which store the
SecurityContext when a
sendError() , sendRedirect ,
getOutputStream().close() , getOutputStream().flush() ,
getWriter().close() , or getWriter().flush() happens on the
same thread that this SaveContextOnUpdateOrErrorResponseWrapper was created. |
SecurityContextPersistenceFilter |
Populates the
SecurityContextHolder with information obtained from the
configured SecurityContextRepository prior to the request and stores it back in
the repository once the request has completed and clearing the context holder. |