void |
SessionStorageManager.addUniqueUserId(String sessionGroupId,
String uniqueUserId) |
Associate a unique user ID with a specified session group.
|
void |
SessionStorageManager.createSessionGroup(SessionGroupData sessionGroupData) |
Save a new session group.
|
void |
SessionStorageManager.deleteAuthnSessions(String sessionGroupId,
Collection<String> attributeHashes) |
Delete authentication sessions for the specified session group ID and attribute hash values.
|
void |
SessionStorageManager.deleteExpiredSessionGroups() |
|
void |
SessionStorageManager.deleteSessionGroups(Collection<String> hashedSessionIds) |
Delete the session groups identified by the specified hashed session IDs.
|
void |
SessionStorageManager.deleteSessionGroupsByGroupIds(Collection<String> sessionGroupIds) |
Delete the session groups with the specified IDs.
|
Collection<SessionGroupAndSessionsData> |
SessionStorageManager.getSessionGroupsAndSessions(Collection<String> hashedSessionIds) |
For the specified hashed session IDs, retrieve session group data as well as data for all associated authentication
sessions.
|
Collection<SessionGroupAndSessionsData> |
SessionStorageManager.getSessionGroupsAndSessionsByGroupIds(Collection<String> sessionGroupIds) |
For the specified session group IDs, retrieve session group data as well as data for all associated authentication
sessions.
|
Collection<SessionGroupData> |
SessionStorageManager.getSessionGroupsByUniqueUserId(String uniqueUserId) |
Retrieve data for all session groups associated with the specified unique user ID.
|
void |
SessionStorageManager.saveAuthnSessions(Collection<AuthnSessionData> sessionDatas) |
Save the specified authentication session data objects.
|
void |
SessionStorageManager.updateSessionGroup(SessionGroupData sessionGroupData) |
Update an existing session group.
|