Interface MapAuthenticatedClientSessionEntity
-
- All Superinterfaces:
AbstractEntity,UpdatableEntity
- All Known Implementing Classes:
MapAuthenticatedClientSessionEntity.AbstractAuthenticatedClientSessionEntity,MapAuthenticatedClientSessionEntityDelegate,MapAuthenticatedClientSessionEntityFieldDelegate,MapAuthenticatedClientSessionEntityImpl,MapAuthenticatedClientSessionEntityImpl.Empty
public interface MapAuthenticatedClientSessionEntity extends AbstractEntity, UpdatableEntity
- Author:
- Martin Kanis
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classMapAuthenticatedClientSessionEntity.AbstractAuthenticatedClientSessionEntity-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntity
UpdatableEntity.Impl
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAction()StringgetAuthMethod()StringgetClientId()StringgetCurrentRefreshToken()IntegergetCurrentRefreshTokenUseCount()LonggetExpiration()StringgetNote(String name)Map<String,String>getNotes()StringgetRealmId()StringgetRedirectUri()LonggetTimestamp()StringgetUserSessionId()BooleanisOffline()BooleanremoveNote(String name)voidsetAction(String action)voidsetAuthMethod(String authMethod)voidsetClientId(String clientId)voidsetCurrentRefreshToken(String currentRefreshToken)voidsetCurrentRefreshTokenUseCount(Integer currentRefreshTokenUseCount)voidsetExpiration(Long expiration)voidsetNote(String name, String value)voidsetNotes(Map<String,String> notes)voidsetOffline(Boolean offline)voidsetRealmId(String realmId)voidsetRedirectUri(String redirectUri)voidsetTimestamp(Long timestamp)voidsetUserSessionId(String userSessionId)-
Methods inherited from interface org.keycloak.models.map.common.AbstractEntity
getId, setId
-
Methods inherited from interface org.keycloak.models.map.common.UpdatableEntity
clearUpdatedFlag, isUpdated
-
-
-
-
Method Detail
-
getRealmId
String getRealmId()
-
setRealmId
void setRealmId(String realmId)
-
getClientId
String getClientId()
-
setClientId
void setClientId(String clientId)
-
getUserSessionId
String getUserSessionId()
-
setUserSessionId
void setUserSessionId(String userSessionId)
-
getAuthMethod
String getAuthMethod()
-
setAuthMethod
void setAuthMethod(String authMethod)
-
getRedirectUri
String getRedirectUri()
-
setRedirectUri
void setRedirectUri(String redirectUri)
-
getTimestamp
Long getTimestamp()
-
setTimestamp
void setTimestamp(Long timestamp)
-
getExpiration
Long getExpiration()
-
setExpiration
void setExpiration(Long expiration)
-
getAction
String getAction()
-
setAction
void setAction(String action)
-
getCurrentRefreshToken
String getCurrentRefreshToken()
-
setCurrentRefreshToken
void setCurrentRefreshToken(String currentRefreshToken)
-
getCurrentRefreshTokenUseCount
Integer getCurrentRefreshTokenUseCount()
-
setCurrentRefreshTokenUseCount
void setCurrentRefreshTokenUseCount(Integer currentRefreshTokenUseCount)
-
isOffline
Boolean isOffline()
-
setOffline
void setOffline(Boolean offline)
-
-