Interface SessionManager
- All Known Subinterfaces:
WebUiSessionManager
public interface SessionManager
Management for basic http sessions. Useful for subsystems that want to control their own sessions without relying
on the web container's (Jetty) default session management.
-
Method Summary
Modifier and TypeMethodDescriptiongetSession
(String id) Get aSession
managed by thisSessionManager
.Collection<? extends Session>
-
Method Details
-
getSessions
Collection<? extends Session> getSessions()- Returns:
- an unmodifiable
Collection
ofSession
instances managed by thisSessionManager
. never null. collection elements are never null.
-
getSession
Get aSession
managed by thisSessionManager
.
-