Uses of Interface
org.eclipse.jetty.server.session.SessionDataStore
-
Packages that use SessionDataStore Package Description org.eclipse.jetty.server.session Jetty Server : Session Management Implementations -
-
Uses of SessionDataStore in org.eclipse.jetty.server.session
Classes in org.eclipse.jetty.server.session that implement SessionDataStore Modifier and Type Class Description class
AbstractSessionDataStore
AbstractSessionDataStoreclass
CachingSessionDataStore
CachingSessionDataStore A SessionDataStore is a mechanism for (persistently) storing data associated with sessions.class
FileSessionDataStore
FileSessionDataStore A file-based store of session data.class
JDBCSessionDataStore
JDBCSessionDataStore Session data stored in databaseclass
NullSessionDataStore
NullSessionDataStore Does not actually store anything, useful for testing.Fields in org.eclipse.jetty.server.session declared as SessionDataStore Modifier and Type Field Description protected SessionDataStore
AbstractSessionCache. _sessionDataStore
The authoritative source of session dataprotected SessionDataStore
CachingSessionDataStore. _store
The actual store for the session dataMethods in org.eclipse.jetty.server.session that return SessionDataStore Modifier and Type Method Description SessionDataStore
AbstractSessionCache. getSessionDataStore()
SessionDataStore
CachingSessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
SessionDataStore
FileSessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
SessionDataStore
JDBCSessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
SessionDataStore
NullSessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
SessionDataStore
SessionCache. getSessionDataStore()
SessionDataStore
SessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
SessionDataStore
CachingSessionDataStore. getSessionStore()
Methods in org.eclipse.jetty.server.session with parameters of type SessionDataStore Modifier and Type Method Description void
AbstractSessionCache. setSessionDataStore(SessionDataStore sessionStore)
void
SessionCache. setSessionDataStore(SessionDataStore sds)
A SessionDataStore that is the authoritative source of session information.Constructors in org.eclipse.jetty.server.session with parameters of type SessionDataStore Constructor Description CachingSessionDataStore(SessionDataMap cache, SessionDataStore store)
-