Uses of Class
org.eclipse.jetty.session.SessionData
Packages that use SessionData
Package
Description
Jetty NoSql : Generic Nosql Session Management
Jetty NoSql : MongoDB Integration
Jetty Server : Session Management Implementations
-
Uses of SessionData in org.eclipse.jetty.hazelcast.session
Classes in org.eclipse.jetty.hazelcast.session that implement interfaces with type arguments of type SessionDataModifier and TypeClassDescriptionclassSessionDataSerializer Handles serialization on behalf of the SessionData object, and ensures that we use jetty's classloading knowledge.Methods in org.eclipse.jetty.hazelcast.session that return SessionDataModifier and TypeMethodDescriptionSessionDataSerializer.read(com.hazelcast.nio.ObjectDataInput in) Methods in org.eclipse.jetty.hazelcast.session that return types with arguments of type SessionDataModifier and TypeMethodDescriptioncom.hazelcast.map.IMap<String, SessionData> HazelcastSessionDataStore.getSessionDataMap()Methods in org.eclipse.jetty.hazelcast.session with parameters of type SessionDataModifier and TypeMethodDescriptionvoidHazelcastSessionDataStore.doStore(String id, SessionData data, long lastSaveTime) voidSessionDataSerializer.write(com.hazelcast.nio.ObjectDataOutput out, SessionData data) Method parameters in org.eclipse.jetty.hazelcast.session with type arguments of type SessionDataModifier and TypeMethodDescriptionvoidHazelcastSessionDataStore.setSessionDataMap(com.hazelcast.map.IMap<String, SessionData> sessionDataMap) -
Uses of SessionData in org.eclipse.jetty.memcached.session
Methods in org.eclipse.jetty.memcached.session that return SessionDataMethods in org.eclipse.jetty.memcached.session with parameters of type SessionDataModifier and TypeMethodDescriptionvoidMemcachedSessionDataMap.store(String id, SessionData data) -
Uses of SessionData in org.eclipse.jetty.nosql
Subclasses of SessionData in org.eclipse.jetty.nosqlMethods in org.eclipse.jetty.nosql that return SessionDataModifier and TypeMethodDescriptionNoSqlSessionDataStore.newSessionData(String id, long created, long accessed, long lastAccessed, long maxInactiveMs) -
Uses of SessionData in org.eclipse.jetty.nosql.mongodb
Methods in org.eclipse.jetty.nosql.mongodb that return SessionDataMethods in org.eclipse.jetty.nosql.mongodb with parameters of type SessionDataModifier and TypeMethodDescriptionvoidMongoSessionDataStore.doStore(String id, SessionData data, long lastSaveTime) -
Uses of SessionData in org.eclipse.jetty.session
Fields in org.eclipse.jetty.session declared as SessionDataMethods in org.eclipse.jetty.session that return SessionDataModifier and TypeMethodDescriptionabstract SessionDataLoad the session from persistent store.ManagedSession.getSessionData()protected SessionDataFileSessionDataStore.load(InputStream is, String expectedId) Load the session data from a file.Read in session data.AbstractSessionDataStore.newSessionData(String id, long created, long accessed, long lastAccessed, long maxInactiveMs) CachingSessionDataStore.newSessionData(String id, long created, long accessed, long lastAccessed, long maxInactiveMs) NullSessionDataStore.newSessionData(String id, long created, long accessed, long lastAccessed, long maxInactiveMs) SessionDataStore.newSessionData(String id, long created, long accessed, long lastAccessed, long maxInactiveMs) Create a new SessionDataMethods in org.eclipse.jetty.session with parameters of type SessionDataModifier and TypeMethodDescriptionvoidSessionData.copy(SessionData data) Copy the info from the given sessiondataprotected voidObjectStreamSessionDataStore.deserializeAttributes(SessionData data, InputStream is) Deserialize the attribute map from the InputStream provided and store into the SessionData.static voidSessionData.deserializeAttributes(SessionData data, ObjectInputStream in) De-serialize the attribute map of a session.protected voidJDBCSessionDataStore.doInsert(String id, SessionData data) abstract voidAbstractSessionDataStore.doStore(String id, SessionData data, long lastSaveTime) Store the session data persistently.voidFileSessionDataStore.doStore(String id, SessionData data, long lastSaveTime) voidJDBCSessionDataStore.doStore(String id, SessionData data, long lastSaveTime) voidNullSessionDataStore.doStore(String id, SessionData data, long lastSaveTime) protected voidJDBCSessionDataStore.doUpdate(String id, SessionData data) protected StringFileSessionDataStore.getIdWithContextAndExpiry(SessionData data) Get the session id with its context and its expiry timeabstract ManagedSessionAbstractSessionCache.newSession(SessionData data) Create a new Session object from pre-existing session dataDefaultSessionCache.newSession(SessionData data) NullSessionCache.newSession(SessionData data) SessionCache.newSession(SessionData data) Re-materialize a Session that has previously existed.protected voidFileSessionDataStore.save(OutputStream os, String id, SessionData data) Save the session data.protected voidObjectStreamSessionDataStore.serializeAttributes(SessionData data, OutputStream os) Serialize the attribute map of the SessionData into the OutputStream provided.static voidSessionData.serializeAttributes(SessionData data, ObjectOutputStream out) Serialize the attribute map of the session.voidAbstractSessionDataStore.store(String id, SessionData data) voidCachingSessionDataStore.store(String id, SessionData data) voidSessionDataMap.store(String id, SessionData data) Store the session data.Constructors in org.eclipse.jetty.session with parameters of type SessionDataModifierConstructorDescriptionManagedSession(SessionManager manager, SessionData data) Create a new session object.