Uses of Interface
org.eclipse.jetty.server.session.SessionDataStore
-
Packages that use SessionDataStore Package Description org.eclipse.jetty.gcloud.session org.eclipse.jetty.hazelcast.session org.eclipse.jetty.nosql Jetty NoSql : Generic Nosql Session Managementorg.eclipse.jetty.nosql.mongodb Jetty NoSql : MongoDB Integrationorg.eclipse.jetty.server.session Jetty Server : Session Management Implementationsorg.eclipse.jetty.session.infinispan -
-
Uses of SessionDataStore in org.eclipse.jetty.gcloud.session
Classes in org.eclipse.jetty.gcloud.session that implement SessionDataStore Modifier and Type Class Description class
GCloudSessionDataStore
GCloudSessionDataStoreMethods in org.eclipse.jetty.gcloud.session that return SessionDataStore Modifier and Type Method Description SessionDataStore
GCloudSessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
-
Uses of SessionDataStore in org.eclipse.jetty.hazelcast.session
Classes in org.eclipse.jetty.hazelcast.session that implement SessionDataStore Modifier and Type Class Description class
HazelcastSessionDataStore
Session data stored in HazelcastMethods in org.eclipse.jetty.hazelcast.session that return SessionDataStore Modifier and Type Method Description SessionDataStore
HazelcastSessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
-
Uses of SessionDataStore in org.eclipse.jetty.nosql
Classes in org.eclipse.jetty.nosql that implement SessionDataStore Modifier and Type Class Description class
NoSqlSessionDataStore
NoSqlSessionDataStore -
Uses of SessionDataStore in org.eclipse.jetty.nosql.mongodb
Classes in org.eclipse.jetty.nosql.mongodb that implement SessionDataStore Modifier and Type Class Description class
MongoSessionDataStore
MongoSessionDataStore The document model is an outer object that contains the elements: "id" : session_id "created" : create_time "accessed": last_access_time "maxIdle" : max_idle_time setting as session was created "expiry" : time at which session should expire "valid" : session_valid "context" : a nested object containing 1 nested object per context for which the session id is in use Each of the nested objects inside the "context" element contains: unique_context_name : nested object containing name:value pairs of the session attributes for that context unique_context_name: vhost:contextpath, where no vhosts="0_0_0_0", root context = "", contextpath "/" replaced by "_"Methods in org.eclipse.jetty.nosql.mongodb that return SessionDataStore Modifier and Type Method Description SessionDataStore
MongoSessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
-
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)
-
Uses of SessionDataStore in org.eclipse.jetty.session.infinispan
Classes in org.eclipse.jetty.session.infinispan that implement SessionDataStore Modifier and Type Class Description class
InfinispanSessionDataStore
InfinispanSessionDataStoreMethods in org.eclipse.jetty.session.infinispan that return SessionDataStore Modifier and Type Method Description SessionDataStore
InfinispanSessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
-