Uses of Class
org.eclipse.jetty.server.session.SessionData
Packages that use SessionData
Package
Description
Jetty Server : Session Management Implementations
-
Uses of SessionData in org.eclipse.jetty.server.session
Fields in org.eclipse.jetty.server.session declared as SessionDataMethods in org.eclipse.jetty.server.session that return SessionDataModifier and TypeMethodDescriptionabstract SessionDataLoad the session from persistent store.protected SessionDataSession.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.server.session with parameters of type SessionDataModifier and TypeMethodDescriptionvoidSessionData.copy(SessionData data) Copy the info from the given sessiondatastatic 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 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 dataDefaultSessionCache.newSession(javax.servlet.http.HttpServletRequest request, SessionData data) DefaultSessionCache.newSession(SessionData data) NullSessionCache.newSession(javax.servlet.http.HttpServletRequest request, 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.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.server.session with parameters of type SessionDataModifierConstructorDescriptionSession(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.