| Package | Description |
|---|---|
| org.eclipse.jetty.server.session |
Jetty Server : Session Management Implementations
|
| Modifier and Type | Class | Description |
|---|---|---|
class |
HashedSession |
|
class |
JDBCSessionManager.Session |
Session
Session instance.
|
class |
MemSession |
MemSession
A session whose data is kept in memory
|
| Modifier and Type | Method | Description |
|---|---|---|
AbstractSession |
AbstractSession.getSession() |
|
abstract AbstractSession |
AbstractSessionManager.getSession(java.lang.String idInCluster) |
Get a known existing session
|
AbstractSession |
AbstractSessionManager.SessionIf.getSession() |
|
AbstractSession |
HashSessionManager.getSession(java.lang.String idInCluster) |
|
protected abstract AbstractSession |
AbstractSessionManager.newSession(javax.servlet.http.HttpServletRequest request) |
Create a new session instance
|
protected AbstractSession |
HashSessionManager.newSession(long created,
long accessed,
java.lang.String clusterId) |
|
protected AbstractSession |
HashSessionManager.newSession(javax.servlet.http.HttpServletRequest request) |
|
protected AbstractSession |
JDBCSessionManager.newSession(java.lang.String sessionId,
java.lang.String rowId,
long created,
long accessed,
long maxInterval) |
|
protected AbstractSession |
JDBCSessionManager.newSession(javax.servlet.http.HttpServletRequest request) |
Make a new Session.
|
| Modifier and Type | Method | Description |
|---|---|---|
protected abstract void |
AbstractSessionManager.addSession(AbstractSession session) |
|
protected void |
AbstractSessionManager.addSession(AbstractSession session,
boolean created) |
Add the session Registers the session with this manager and registers the
session ID with the sessionIDManager;
|
protected void |
HashSessionManager.addSession(AbstractSession session) |
|
protected void |
JDBCSessionManager.addSession(AbstractSession session) |
Add a newly created session to our in-memory list for this node and persist it.
|
void |
AbstractSessionManager.doSessionAttributeListeners(AbstractSession session,
java.lang.String name,
java.lang.Object old,
java.lang.Object value) |
|
boolean |
AbstractSessionManager.removeSession(AbstractSession session,
boolean invalidate) |
Remove session from manager
|
boolean |
JDBCSessionManager.removeSession(AbstractSession session,
boolean invalidate) |
Remove session from manager
|
Copyright © 1995–2018 Webtide. All rights reserved.