Uses of Interface
org.eclipse.jetty.session.SessionDataStore
Packages that use SessionDataStore
Package
Description
Jetty NoSql : Generic Nosql Session Management
Jetty NoSql : MongoDB Integration
Jetty Server : Session Management Implementations
-
Uses of SessionDataStore in org.eclipse.jetty.hazelcast.session
Classes in org.eclipse.jetty.hazelcast.session that implement SessionDataStoreModifier and TypeClassDescriptionclassSession data stored in HazelcastMethods in org.eclipse.jetty.hazelcast.session that return SessionDataStoreModifier and TypeMethodDescriptionHazelcastSessionDataStoreFactory.getSessionDataStore(SessionManager sessionManager) -
Uses of SessionDataStore in org.eclipse.jetty.nosql
Classes in org.eclipse.jetty.nosql that implement SessionDataStore -
Uses of SessionDataStore in org.eclipse.jetty.nosql.mongodb
Classes in org.eclipse.jetty.nosql.mongodb that implement SessionDataStoreModifier and TypeClassDescriptionclassMongoSessionDataStore 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 SessionDataStoreModifier and TypeMethodDescriptionMongoSessionDataStoreFactory.getSessionDataStore(SessionManager sessionManager) -
Uses of SessionDataStore in org.eclipse.jetty.session
Classes in org.eclipse.jetty.session that implement SessionDataStoreModifier and TypeClassDescriptionclassAbstractSessionDataStoreclassCachingSessionDataStore A SessionDataStore is a mechanism for (persistently) storing data associated with sessions.classFileSessionDataStore A file-based store of session data.classJDBCSessionDataStore Session data stored in databaseclassNullSessionDataStore Does not actually store anything, useful for testing.classFields in org.eclipse.jetty.session declared as SessionDataStoreModifier and TypeFieldDescriptionprotected SessionDataStoreAbstractSessionCache._sessionDataStoreThe authoritative source of session dataprotected SessionDataStoreCachingSessionDataStore._storeThe actual store for the session dataMethods in org.eclipse.jetty.session that return SessionDataStoreModifier and TypeMethodDescriptionAbstractSessionCache.getSessionDataStore()CachingSessionDataStoreFactory.getSessionDataStore(SessionManager manager) FileSessionDataStoreFactory.getSessionDataStore(SessionManager manager) JDBCSessionDataStoreFactory.getSessionDataStore(SessionManager manager) NullSessionDataStoreFactory.getSessionDataStore(SessionManager manager) SessionCache.getSessionDataStore()SessionDataStoreFactory.getSessionDataStore(SessionManager manager) CachingSessionDataStore.getSessionStore()Get the delegate session store.Methods in org.eclipse.jetty.session with parameters of type SessionDataStoreModifier and TypeMethodDescriptionvoidAbstractSessionCache.setSessionDataStore(SessionDataStore sessionStore) voidSessionCache.setSessionDataStore(SessionDataStore sds) A SessionDataStore that is the authoritative source of session information.Constructors in org.eclipse.jetty.session with parameters of type SessionDataStoreModifierConstructorDescriptionCachingSessionDataStore(SessionDataMap cache, SessionDataStore store)