Package org.keycloak.models.jpa.session
Class JpaUserSessionPersisterProvider
- java.lang.Object
-
- org.keycloak.models.jpa.session.JpaUserSessionPersisterProvider
-
- All Implemented Interfaces:
UserSessionPersisterProvider,Provider
public class JpaUserSessionPersisterProvider extends Object implements UserSessionPersisterProvider
- Author:
- Marek Posolda
-
-
Constructor Summary
Constructors Constructor Description JpaUserSessionPersisterProvider(KeycloakSession session, javax.persistence.EntityManager em)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidcreateClientSession(AuthenticatedClientSessionModel clientSession, boolean offline)voidcreateUserSession(UserSessionModel userSession, boolean offline)intgetUserSessionsCount(boolean offline)Retrieves the count of user sessions for all realms.intgetUserSessionsCount(RealmModel realm, ClientModel clientModel, boolean offline)Retrieves the count of user client-sessions for the given clientMap<String,Long>getUserSessionsCountsByClients(RealmModel realm, boolean offline)Returns aMapcontaining the number of user-sessions aggregated by client id for the given realm.UserSessionModelloadUserSession(RealmModel realm, String userSessionId, boolean offline)Loads the user session with the given userSessionId.Stream<UserSessionModel>loadUserSessionsStream(Integer firstResult, Integer maxResults, boolean offline, String lastUserSessionId)Called during startup.Stream<UserSessionModel>loadUserSessionsStream(RealmModel realm, ClientModel client, boolean offline, Integer firstResult, Integer maxResults)Loads the user sessions for the givenClientModelin the givenRealmModelif present.Stream<UserSessionModel>loadUserSessionsStream(RealmModel realm, UserModel user, boolean offline, Integer firstResult, Integer maxResults)Loads the user sessions for the givenUserModelin the givenRealmModelif present.voidonClientRemoved(RealmModel realm, ClientModel client)voidonRealmRemoved(RealmModel realm)voidonUserRemoved(RealmModel realm, UserModel user)voidremoveClientSession(String userSessionId, String clientUUID, boolean offline)voidremoveExpired(RealmModel realm)voidremoveUserSession(String userSessionId, boolean offline)voidupdateLastSessionRefreshes(RealmModel realm, int lastSessionRefresh, Collection<String> userSessionIds, boolean offline)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.keycloak.models.session.UserSessionPersisterProvider
loadUserSessions
-
-
-
-
Constructor Detail
-
JpaUserSessionPersisterProvider
public JpaUserSessionPersisterProvider(KeycloakSession session, javax.persistence.EntityManager em)
-
-
Method Detail
-
createUserSession
public void createUserSession(UserSessionModel userSession, boolean offline)
- Specified by:
createUserSessionin interfaceUserSessionPersisterProvider
-
createClientSession
public void createClientSession(AuthenticatedClientSessionModel clientSession, boolean offline)
- Specified by:
createClientSessionin interfaceUserSessionPersisterProvider
-
removeUserSession
public void removeUserSession(String userSessionId, boolean offline)
- Specified by:
removeUserSessionin interfaceUserSessionPersisterProvider
-
removeClientSession
public void removeClientSession(String userSessionId, String clientUUID, boolean offline)
- Specified by:
removeClientSessionin interfaceUserSessionPersisterProvider
-
onRealmRemoved
public void onRealmRemoved(RealmModel realm)
- Specified by:
onRealmRemovedin interfaceUserSessionPersisterProvider
-
onClientRemoved
public void onClientRemoved(RealmModel realm, ClientModel client)
- Specified by:
onClientRemovedin interfaceUserSessionPersisterProvider
-
onUserRemoved
public void onUserRemoved(RealmModel realm, UserModel user)
- Specified by:
onUserRemovedin interfaceUserSessionPersisterProvider
-
updateLastSessionRefreshes
public void updateLastSessionRefreshes(RealmModel realm, int lastSessionRefresh, Collection<String> userSessionIds, boolean offline)
- Specified by:
updateLastSessionRefreshesin interfaceUserSessionPersisterProvider
-
removeExpired
public void removeExpired(RealmModel realm)
- Specified by:
removeExpiredin interfaceUserSessionPersisterProvider
-
getUserSessionsCountsByClients
public Map<String,Long> getUserSessionsCountsByClients(RealmModel realm, boolean offline)
Description copied from interface:UserSessionPersisterProviderReturns aMapcontaining the number of user-sessions aggregated by client id for the given realm.- Specified by:
getUserSessionsCountsByClientsin interfaceUserSessionPersisterProvider- Returns:
- the count
Mapwith clientId as key and session count as value
-
loadUserSession
public UserSessionModel loadUserSession(RealmModel realm, String userSessionId, boolean offline)
Description copied from interface:UserSessionPersisterProviderLoads the user session with the given userSessionId.- Specified by:
loadUserSessionin interfaceUserSessionPersisterProvider- Returns:
-
loadUserSessionsStream
public Stream<UserSessionModel> loadUserSessionsStream(RealmModel realm, ClientModel client, boolean offline, Integer firstResult, Integer maxResults)
Description copied from interface:UserSessionPersisterProviderLoads the user sessions for the givenClientModelin the givenRealmModelif present.- Specified by:
loadUserSessionsStreamin interfaceUserSessionPersisterProvider- Returns:
-
loadUserSessionsStream
public Stream<UserSessionModel> loadUserSessionsStream(RealmModel realm, UserModel user, boolean offline, Integer firstResult, Integer maxResults)
Description copied from interface:UserSessionPersisterProviderLoads the user sessions for the givenUserModelin the givenRealmModelif present.- Specified by:
loadUserSessionsStreamin interfaceUserSessionPersisterProvider- Returns:
-
loadUserSessionsStream
public Stream<UserSessionModel> loadUserSessionsStream(Integer firstResult, Integer maxResults, boolean offline, String lastUserSessionId)
Description copied from interface:UserSessionPersisterProviderCalled during startup. For each userSession, it loads also clientSessions.- Specified by:
loadUserSessionsStreamin interfaceUserSessionPersisterProvider- Parameters:
firstResult-IntegerIndex of the first desired user session. Ignored if negative ornull.maxResults-IntegerMaximum number of returned user sessions. Ignored if negative ornull.offline-booleanFlag to include offline sessions.lastUserSessionId-StringId of the user session. It will return only user sessions with id's lexicographically greater than this. it will compare the id in dictionary order and takes only those created later.- Returns:
- Stream of
UserSessionModel. Never returnsnull.
-
getUserSessionsCount
public int getUserSessionsCount(boolean offline)
Description copied from interface:UserSessionPersisterProviderRetrieves the count of user sessions for all realms.- Specified by:
getUserSessionsCountin interfaceUserSessionPersisterProvider- Returns:
-
getUserSessionsCount
public int getUserSessionsCount(RealmModel realm, ClientModel clientModel, boolean offline)
Description copied from interface:UserSessionPersisterProviderRetrieves the count of user client-sessions for the given client- Specified by:
getUserSessionsCountin interfaceUserSessionPersisterProvider- Returns:
-
-