Interface | Description |
---|---|
CookieSerializer |
Strategy for reading and writing a cookie value to the
HttpServletResponse . |
HttpSessionManager |
Allows managing a mapping of alias to the session id for having multiple active
sessions at the same time.
|
HttpSessionStrategy |
A strategy for mapping HTTP request and responses to a
Session . |
MultiHttpSessionStrategy |
Some
HttpSessionStrategy may also want to further customize
HttpServletRequest and HttpServletResponse objects. |
RequestResponsePostProcessor |
Allows customizing the
HttpServletRequest and/or the
HttpServletResponse . |
Class | Description |
---|---|
CookieHttpSessionStrategy |
A
HttpSessionStrategy that uses a cookie to obtain the session from. |
CookieSerializer.CookieValue |
Contains the information necessary to write a value to the
HttpServletResponse . |
DefaultCookieSerializer |
The default implementation of
CookieSerializer . |
HeaderHttpSessionStrategy |
A
HttpSessionStrategy that uses a header to obtain the session from. |
SessionEventHttpSessionListenerAdapter |
Receives
SessionDestroyedEvent and SessionCreatedEvent and translates
them into HttpSessionEvent and submits the HttpSessionEvent to every
registered HttpSessionListener . |
SessionRepositoryFilter<S extends ExpiringSession> |
Switches the
HttpSession implementation to be backed by a
Session . |