Uses of Class
org.eclipse.jetty.server.session.SessionData
-
Packages that use SessionData Package Description org.eclipse.jetty.gcloud.session org.eclipse.jetty.hazelcast.session org.eclipse.jetty.memcached.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 SessionData in org.eclipse.jetty.gcloud.session
Methods in org.eclipse.jetty.gcloud.session that return SessionData Modifier and Type Method Description SessionDataGCloudSessionDataStore. doLoad(java.lang.String id)protected SessionDataGCloudSessionDataStore. sessionFromEntity(com.google.cloud.datastore.Entity entity)Generate SessionData from an Entity retrieved from gcloud datastore.Methods in org.eclipse.jetty.gcloud.session with parameters of type SessionData Modifier and Type Method Description voidGCloudSessionDataStore. doStore(java.lang.String id, SessionData data, long lastSaveTime)protected com.google.cloud.datastore.EntityGCloudSessionDataStore. entityFromSession(SessionData session, com.google.cloud.datastore.Key key)Generate a gcloud datastore Entity from SessionData -
Uses of SessionData in org.eclipse.jetty.hazelcast.session
Methods in org.eclipse.jetty.hazelcast.session that return SessionData Modifier and Type Method Description SessionDataHazelcastSessionDataStore. doLoad(java.lang.String id)SessionDataSessionDataSerializer. read(com.hazelcast.nio.ObjectDataInput in)Methods in org.eclipse.jetty.hazelcast.session that return types with arguments of type SessionData Modifier and Type Method Description com.hazelcast.core.IMap<java.lang.String,SessionData>HazelcastSessionDataStore. getSessionDataMap()Methods in org.eclipse.jetty.hazelcast.session with parameters of type SessionData Modifier and Type Method Description voidHazelcastSessionDataStore. doStore(java.lang.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 SessionData Modifier and Type Method Description voidHazelcastSessionDataStore. setSessionDataMap(com.hazelcast.core.IMap<java.lang.String,SessionData> sessionDataMap) -
Uses of SessionData in org.eclipse.jetty.memcached.session
Methods in org.eclipse.jetty.memcached.session that return SessionData Modifier and Type Method Description SessionDataMemcachedSessionDataMap. load(java.lang.String id)Methods in org.eclipse.jetty.memcached.session with parameters of type SessionData Modifier and Type Method Description voidMemcachedSessionDataMap. store(java.lang.String id, SessionData data) -
Uses of SessionData in org.eclipse.jetty.nosql
Subclasses of SessionData in org.eclipse.jetty.nosql Modifier and Type Class Description classNoSqlSessionDataStore.NoSqlSessionDataMethods in org.eclipse.jetty.nosql that return SessionData Modifier and Type Method Description SessionDataNoSqlSessionDataStore. newSessionData(java.lang.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 SessionData Modifier and Type Method Description SessionDataMongoSessionDataStore. doLoad(java.lang.String id)Methods in org.eclipse.jetty.nosql.mongodb with parameters of type SessionData Modifier and Type Method Description voidMongoSessionDataStore. doStore(java.lang.String id, SessionData data, long lastSaveTime) -
Uses of SessionData in org.eclipse.jetty.server.session
Fields in org.eclipse.jetty.server.session declared as SessionData Modifier and Type Field Description protected SessionDataSession. _sessionDataMethods in org.eclipse.jetty.server.session that return SessionData Modifier and Type Method Description abstract SessionDataAbstractSessionDataStore. doLoad(java.lang.String id)Load the session from persistent store.SessionDataFileSessionDataStore. doLoad(java.lang.String id)SessionDataJDBCSessionDataStore. doLoad(java.lang.String id)SessionDataNullSessionDataStore. doLoad(java.lang.String id)protected SessionDataSession. getSessionData()SessionDataAbstractSessionDataStore. load(java.lang.String id)SessionDataCachingSessionDataStore. load(java.lang.String id)protected SessionDataFileSessionDataStore. load(java.io.InputStream is, java.lang.String expectedId)Load the session data from a file.SessionDataSessionDataMap. load(java.lang.String id)Read in session data.SessionDataAbstractSessionDataStore. newSessionData(java.lang.String id, long created, long accessed, long lastAccessed, long maxInactiveMs)SessionDataCachingSessionDataStore. newSessionData(java.lang.String id, long created, long accessed, long lastAccessed, long maxInactiveMs)SessionDataNullSessionDataStore. newSessionData(java.lang.String id, long created, long accessed, long lastAccessed, long maxInactiveMs)SessionDataSessionDataStore. newSessionData(java.lang.String id, long created, long accessed, long lastAccessed, long maxInactiveMs)Create a new SessionDataMethods in org.eclipse.jetty.server.session with parameters of type SessionData Modifier and Type Method Description voidSessionData. copy(SessionData data)Copy the info from the given sessiondatastatic voidSessionData. deserializeAttributes(SessionData data, java.io.ObjectInputStream in)De-serialize the attribute map of a session.protected voidJDBCSessionDataStore. doInsert(java.lang.String id, SessionData data)abstract voidAbstractSessionDataStore. doStore(java.lang.String id, SessionData data, long lastSaveTime)Store the session data persistently.voidFileSessionDataStore. doStore(java.lang.String id, SessionData data, long lastSaveTime)voidJDBCSessionDataStore. doStore(java.lang.String id, SessionData data, long lastSaveTime)voidNullSessionDataStore. doStore(java.lang.String id, SessionData data, long lastSaveTime)protected voidJDBCSessionDataStore. doUpdate(java.lang.String id, SessionData data)protected java.lang.StringFileSessionDataStore. getIdWithContextAndExpiry(SessionData data)Get the session id with its context and its expiry timeabstract SessionAbstractSessionCache. newSession(javax.servlet.http.HttpServletRequest request, SessionData data)Create a new Session for a request.abstract SessionAbstractSessionCache. newSession(SessionData data)Create a new Session object from pre-existing session dataSessionDefaultSessionCache. newSession(javax.servlet.http.HttpServletRequest request, SessionData data)SessionDefaultSessionCache. newSession(SessionData data)SessionNullSessionCache. newSession(javax.servlet.http.HttpServletRequest request, SessionData data)SessionNullSessionCache. newSession(SessionData data)SessionSessionCache. newSession(SessionData data)Re-materialize a Session that has previously existed.protected voidFileSessionDataStore. save(java.io.OutputStream os, java.lang.String id, SessionData data)Save the session data.static voidSessionData. serializeAttributes(SessionData data, java.io.ObjectOutputStream out)Serialize the attribute map of the session.voidAbstractSessionDataStore. store(java.lang.String id, SessionData data)voidCachingSessionDataStore. store(java.lang.String id, SessionData data)voidSessionDataMap. store(java.lang.String id, SessionData data)Store the session data.Constructors in org.eclipse.jetty.server.session with parameters of type SessionData Constructor Description Session(SessionHandler handler, javax.servlet.http.HttpServletRequest request, SessionData data)Create a new sessionSession(SessionHandler handler, SessionData data)Re-inflate an existing session from some eg persistent store. -
Uses of SessionData in org.eclipse.jetty.session.infinispan
Subclasses of SessionData in org.eclipse.jetty.session.infinispan Modifier and Type Class Description classInfinispanSessionDataInfinispanSessionData Specialization of SessionData to hold the attributes as a serialized byte array.Methods in org.eclipse.jetty.session.infinispan that return SessionData Modifier and Type Method Description SessionDataInfinispanSessionDataStore. doLoad(java.lang.String id)SessionDataInfinispanSessionDataStore. newSessionData(java.lang.String id, long created, long accessed, long lastAccessed, long maxInactiveMs)Methods in org.eclipse.jetty.session.infinispan that return types with arguments of type SessionData Modifier and Type Method Description org.infinispan.commons.api.BasicCache<java.lang.String,SessionData>InfinispanSessionDataStore. getCache()Get the clustered cache instance.org.infinispan.commons.api.BasicCache<java.lang.String,SessionData>InfinispanSessionDataStoreFactory. getCache()Get the clustered cache instance.Methods in org.eclipse.jetty.session.infinispan with parameters of type SessionData Modifier and Type Method Description voidInfinispanSessionDataStore. doStore(java.lang.String id, SessionData data, long lastSaveTime)Method parameters in org.eclipse.jetty.session.infinispan with type arguments of type SessionData Modifier and Type Method Description QueryManagerEmbeddedQueryManagerFactory. getQueryManager(org.infinispan.commons.api.BasicCache<java.lang.String,SessionData> cache)QueryManagerNullQueryManagerFactory. getQueryManager(org.infinispan.commons.api.BasicCache<java.lang.String,SessionData> cache)QueryManagerQueryManagerFactory. getQueryManager(org.infinispan.commons.api.BasicCache<java.lang.String,SessionData> cache)QueryManagerRemoteQueryManagerFactory. getQueryManager(org.infinispan.commons.api.BasicCache<java.lang.String,SessionData> cache)voidInfinispanSessionDataStore. setCache(org.infinispan.commons.api.BasicCache<java.lang.String,SessionData> cache)Set the clustered cache instance.voidInfinispanSessionDataStoreFactory. setCache(org.infinispan.commons.api.BasicCache<java.lang.String,SessionData> cache)Set the clustered cache instance.Constructor parameters in org.eclipse.jetty.session.infinispan with type arguments of type SessionData Constructor Description EmbeddedQueryManager(org.infinispan.Cache<java.lang.String,SessionData> cache)RemoteQueryManager(org.infinispan.client.hotrod.RemoteCache<java.lang.String,SessionData> cache)
-