| Package | Description |
|---|---|
| org.eclipse.jetty.server.session |
Jetty Server : Session Management Implementations
|
| Modifier and Type | Field and Description |
|---|---|
protected SessionData |
Session._sessionData |
| Modifier and Type | Method and Description |
|---|---|
protected SessionData |
Session.getSessionData() |
SessionData |
SessionDataMap.load(String id)
Read in session data.
|
SessionData |
NullSessionDataStore.load(String id) |
SessionData |
JDBCSessionDataStore.load(String id) |
SessionData |
FileSessionDataStore.load(String id) |
SessionData |
CachingSessionDataStore.load(String id) |
SessionData |
SessionDataStore.newSessionData(String id,
long created,
long accessed,
long lastAccessed,
long maxInactiveMs)
Create a new SessionData
|
SessionData |
NullSessionDataStore.newSessionData(String id,
long created,
long accessed,
long lastAccessed,
long maxInactiveMs) |
SessionData |
CachingSessionDataStore.newSessionData(String id,
long created,
long accessed,
long lastAccessed,
long maxInactiveMs) |
SessionData |
AbstractSessionDataStore.newSessionData(String id,
long created,
long accessed,
long lastAccessed,
long maxInactiveMs) |
| Modifier and Type | Method and Description |
|---|---|
void |
SessionData.copy(SessionData data)
Copy the info from the given sessiondata
|
void |
NullSessionDataStore.doStore(String id,
SessionData data,
long lastSaveTime) |
void |
JDBCSessionDataStore.doStore(String id,
SessionData data,
long lastSaveTime) |
void |
FileSessionDataStore.doStore(String id,
SessionData data,
long lastSaveTime) |
abstract void |
AbstractSessionDataStore.doStore(String id,
SessionData data,
long lastSaveTime)
Store the session data persistently.
|
Session |
NullSessionCache.newSession(HttpServletRequest request,
SessionData data) |
Session |
DefaultSessionCache.newSession(HttpServletRequest request,
SessionData data) |
abstract Session |
AbstractSessionCache.newSession(HttpServletRequest request,
SessionData data)
Create a new Session for a request.
|
Session |
SessionCache.newSession(SessionData data)
Re-materialize a Session that has previously existed.
|
Session |
NullSessionCache.newSession(SessionData data) |
Session |
DefaultSessionCache.newSession(SessionData data) |
abstract Session |
AbstractSessionCache.newSession(SessionData data)
Create a new Session object from pre-existing session data
|
void |
SessionDataMap.store(String id,
SessionData data)
Store the session data.
|
void |
CachingSessionDataStore.store(String id,
SessionData data) |
void |
AbstractSessionDataStore.store(String id,
SessionData data) |
| Constructor and Description |
|---|
PlaceHolderSession(SessionData data) |
Session(SessionHandler handler,
HttpServletRequest request,
SessionData data)
Create a new session
|
Session(SessionHandler handler,
SessionData data)
Re-inflate an existing session from some eg persistent store.
|
Copyright © 1995–2017 Webtide. All rights reserved.