| Package | Description |
|---|---|
| org.opencms.main |
Provides the main OpenCms "operating system".
|
| org.opencms.ui.apps.sessions |
Contains classes of the site manager app.
|
| Modifier and Type | Method and Description |
|---|---|
CmsSessionInfo |
I_CmsSessionStorageProvider.get(CmsUUID sessionId)
Returns the stored session info object with the given id.
|
CmsSessionInfo |
CmsDefaultSessionStorageProvider.get(CmsUUID sessionId) |
CmsSessionInfo |
CmsSessionManager.getSessionInfo(CmsUUID sessionId)
Returns the complete user session info of a user from the session storage,
or
null if this session id has no session info attached. |
CmsSessionInfo |
CmsSessionManager.getSessionInfo(javax.servlet.http.HttpServletRequest req)
Returns the OpenCms user session info for the given request,
or
null if no user session is available. |
CmsSessionInfo |
CmsSessionManager.getSessionInfo(javax.servlet.http.HttpSession session)
Returns the OpenCms user session info for the given http session,
or
null if no user session is available. |
CmsSessionInfo |
CmsSessionManager.getSessionInfo(java.lang.String sessionId)
Returns the complete user session info of a user from the session storage,
or
null if this session id has no session info attached. |
CmsSessionInfo |
I_CmsSessionStorageProvider.put(CmsSessionInfo sessionInfo)
Stores the given session info object.
|
CmsSessionInfo |
CmsDefaultSessionStorageProvider.put(CmsSessionInfo sessionInfo) |
CmsSessionInfo |
I_CmsSessionStorageProvider.remove(CmsUUID sessionId)
Removes the stored session info object identified by the given session id.
|
CmsSessionInfo |
CmsDefaultSessionStorageProvider.remove(CmsUUID sessionId) |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<CmsSessionInfo> |
I_CmsSessionStorageProvider.getAll()
Returns all current stored session info objects.
|
java.util.List<CmsSessionInfo> |
CmsDefaultSessionStorageProvider.getAll() |
java.util.List<CmsSessionInfo> |
I_CmsSessionStorageProvider.getAllOfUser(CmsUUID userId)
Returns all current stored session info objects for the given user.
|
java.util.List<CmsSessionInfo> |
CmsDefaultSessionStorageProvider.getAllOfUser(CmsUUID userId) |
java.util.List<CmsSessionInfo> |
CmsSessionManager.getSessionInfos()
Returns all current session info objects.
|
java.util.List<CmsSessionInfo> |
CmsSessionManager.getSessionInfos(CmsUUID userId)
Returns a list of all active session info objects for the specified user.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
CmsSessionManager.addSessionInfo(CmsSessionInfo sessionInfo)
Adds a new session info into the session storage.
|
int |
CmsSessionInfo.compareTo(CmsSessionInfo obj)
Allows sorting session info according to the user names.
|
CmsSessionInfo |
I_CmsSessionStorageProvider.put(CmsSessionInfo sessionInfo)
Stores the given session info object.
|
CmsSessionInfo |
CmsDefaultSessionStorageProvider.put(CmsSessionInfo sessionInfo) |
java.lang.String |
CmsSessionManager.switchUserFromSession(CmsObject cms,
javax.servlet.http.HttpServletRequest req,
CmsUser user,
CmsSessionInfo sessionInfo)
Switches the current user to the given user.
|
| Modifier and Type | Field and Description |
|---|---|
protected CmsSessionInfo |
CmsUserInfoDialog.m_session
Session info (if showing specific session).
|
| Modifier and Type | Method and Description |
|---|---|
static void |
CmsUserInfoDialog.showUserInfo(CmsSessionInfo session)
Shows a dialog with user information for given session.
|