Interface UndertowSessionManager
-
- All Superinterfaces:
io.undertow.server.session.SessionManager
- All Known Implementing Classes:
DistributableSessionManager
public interface UndertowSessionManager extends io.undertow.server.session.SessionManagerExposes additional session manager aspects to a session.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description io.undertow.server.session.SessionListenersgetSessionListeners()Returns the configured session listeners for this web applicationSessionManager<Map<String,Object>,Batch>getSessionManager()Returns underlying distributable session manager implementation.
-
-
-
Method Detail
-
getSessionListeners
io.undertow.server.session.SessionListeners getSessionListeners()
Returns the configured session listeners for this web application- Returns:
- the session listeners
-
getSessionManager
SessionManager<Map<String,Object>,Batch> getSessionManager()
Returns underlying distributable session manager implementation.- Returns:
- a session manager
-
-