Class RootAuthenticationSessionAdapter
- java.lang.Object
-
- org.keycloak.models.sessions.infinispan.RootAuthenticationSessionAdapter
-
- All Implemented Interfaces:
RootAuthenticationSessionModel
public class RootAuthenticationSessionAdapter extends Object implements RootAuthenticationSessionModel
- Author:
- Marek Posolda
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.keycloak.sessions.RootAuthenticationSessionModel
RootAuthenticationSessionModel.SearchableFields
-
-
Constructor Summary
Constructors Constructor Description RootAuthenticationSessionAdapter(KeycloakSession session, InfinispanAuthenticationSessionProvider provider, org.infinispan.Cache<String,RootAuthenticationSessionEntity> cache, RealmModel realm, RootAuthenticationSessionEntity entity, int authSessionsLimt)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthenticationSessionModel
createAuthenticationSession(ClientModel client)
Create a new authentication session and returns it.AuthenticationSessionModel
getAuthenticationSession(ClientModel client, String tabId)
Returns an authentication session for the particular client and tab or null if it doesn't yet exists.Map<String,AuthenticationSessionModel>
getAuthenticationSessions()
Returns authentication sessions for the root authentication session.String
getId()
Returns id of the root authentication session.RealmModel
getRealm()
Returns realm associated to the root authentication session.int
getTimestamp()
Returns timestamp when the root authentication session was created or updated.void
removeAuthenticationSessionByTabId(String tabId)
Removes the authentication session specified by tab id from the root authentication session.void
restartSession(RealmModel realm)
Will completely restart whole state of authentication session.void
setTimestamp(int timestamp)
Sets a timestamp when the root authentication session was created or updated.
-
-
-
Constructor Detail
-
RootAuthenticationSessionAdapter
public RootAuthenticationSessionAdapter(KeycloakSession session, InfinispanAuthenticationSessionProvider provider, org.infinispan.Cache<String,RootAuthenticationSessionEntity> cache, RealmModel realm, RootAuthenticationSessionEntity entity, int authSessionsLimt)
-
-
Method Detail
-
getId
public String getId()
Description copied from interface:RootAuthenticationSessionModel
Returns id of the root authentication session.- Specified by:
getId
in interfaceRootAuthenticationSessionModel
- Returns:
String
-
getRealm
public RealmModel getRealm()
Description copied from interface:RootAuthenticationSessionModel
Returns realm associated to the root authentication session.- Specified by:
getRealm
in interfaceRootAuthenticationSessionModel
- Returns:
RealmModel
-
getTimestamp
public int getTimestamp()
Description copied from interface:RootAuthenticationSessionModel
Returns timestamp when the root authentication session was created or updated.- Specified by:
getTimestamp
in interfaceRootAuthenticationSessionModel
- Returns:
int
-
setTimestamp
public void setTimestamp(int timestamp)
Description copied from interface:RootAuthenticationSessionModel
Sets a timestamp when the root authentication session was created or updated. It also updates the expiration time for the root authentication session entity.- Specified by:
setTimestamp
in interfaceRootAuthenticationSessionModel
- Parameters:
timestamp
-int
-
getAuthenticationSessions
public Map<String,AuthenticationSessionModel> getAuthenticationSessions()
Description copied from interface:RootAuthenticationSessionModel
Returns authentication sessions for the root authentication session. Key is tabId, Value is AuthenticationSessionModel.- Specified by:
getAuthenticationSessions
in interfaceRootAuthenticationSessionModel
- Returns:
Map<String, AuthenticationSessionModel>
authentication sessions or empty map if no authentication sessions are present. Never return null.
-
getAuthenticationSession
public AuthenticationSessionModel getAuthenticationSession(ClientModel client, String tabId)
Description copied from interface:RootAuthenticationSessionModel
Returns an authentication session for the particular client and tab or null if it doesn't yet exists.- Specified by:
getAuthenticationSession
in interfaceRootAuthenticationSessionModel
- Parameters:
client
-ClientModel
Ifnull
is provided the method will returnnull
.tabId
-String
Ifnull
is provided the method will returnnull
.- Returns:
AuthenticationSessionModel
ornull
in no authentication session is found.
-
createAuthenticationSession
public AuthenticationSessionModel createAuthenticationSession(ClientModel client)
Description copied from interface:RootAuthenticationSessionModel
Create a new authentication session and returns it.- Specified by:
createAuthenticationSession
in interfaceRootAuthenticationSessionModel
- Parameters:
client
-ClientModel
Can't benull
.- Returns:
AuthenticationSessionModel
non-null fresh authentication session. Never returnsnull
.
-
removeAuthenticationSessionByTabId
public void removeAuthenticationSessionByTabId(String tabId)
Description copied from interface:RootAuthenticationSessionModel
Removes the authentication session specified by tab id from the root authentication session. If there's no child authentication session left in the root authentication session, it's removed as well.- Specified by:
removeAuthenticationSessionByTabId
in interfaceRootAuthenticationSessionModel
- Parameters:
tabId
-String
Can't benull
.
-
restartSession
public void restartSession(RealmModel realm)
Description copied from interface:RootAuthenticationSessionModel
Will completely restart whole state of authentication session. It will just keep same ID. It will setup it with provided realm.- Specified by:
restartSession
in interfaceRootAuthenticationSessionModel
- Parameters:
realm
-RealmModel
Associated realm to the root authentication session.
-
-