See: Description
Interface | Description |
---|---|
SecurityContextRepository |
Strategy used for persisting a
SecurityContext between requests. |
Class | Description |
---|---|
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. |
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. |