Interface MapAuthenticatedClientSessionEntity
- 
- All Superinterfaces:
- AbstractEntity,- ExpirableEntity,- UpdatableEntity
 - All Known Implementing Classes:
- HotRodAuthenticatedClientSessionEntity.AbstractHotRodAuthenticatedClientSessionEntityDelegate,- HotRodAuthenticatedClientSessionEntityDelegate,- JpaClientSessionEntity,- JpaClientSessionMetadata,- MapAuthenticatedClientSessionEntity.AbstractAuthenticatedClientSessionEntity,- MapAuthenticatedClientSessionEntityDelegate,- MapAuthenticatedClientSessionEntityFieldDelegate,- MapAuthenticatedClientSessionEntityImpl,- MapAuthenticatedClientSessionEntityImpl.Empty
 
 public interface MapAuthenticatedClientSessionEntity extends AbstractEntity, UpdatableEntity, ExpirableEntity - Author:
- Martin Kanis
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static classMapAuthenticatedClientSessionEntity.AbstractAuthenticatedClientSessionEntity- 
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntityUpdatableEntity.Impl
 
- 
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAction()StringgetAuthMethod()StringgetClientId()StringgetCurrentRefreshToken()IntegergetCurrentRefreshTokenUseCount()StringgetNote(String name)Map<String,String>getNotes()StringgetRealmId()StringgetRedirectUri()LonggetTimestamp()Returns a point in time (timestamp in milliseconds since The Epoch) when the client session entity was created or updated (refreshed).BooleanisOffline()BooleanremoveNote(String name)voidsetAction(String action)voidsetAuthMethod(String authMethod)voidsetClientId(String clientId)voidsetCurrentRefreshToken(String currentRefreshToken)voidsetCurrentRefreshTokenUseCount(Integer currentRefreshTokenUseCount)voidsetNote(String name, String value)voidsetNotes(Map<String,String> notes)voidsetOffline(Boolean offline)voidsetRealmId(String realmId)voidsetRedirectUri(String redirectUri)voidsetTimestamp(Long timestamp)Sets a point in the (timestamp in milliseconds since The Epoch) when the client session entity was created or updated (refreshed).- 
Methods inherited from interface org.keycloak.models.map.common.AbstractEntitygetId, setId
 - 
Methods inherited from interface org.keycloak.models.map.common.ExpirableEntitygetExpiration, setExpiration
 - 
Methods inherited from interface org.keycloak.models.map.common.UpdatableEntityclearUpdatedFlag, isUpdated
 
- 
 
- 
- 
- 
Method Detail- 
getTimestampLong getTimestamp() Returns a point in time (timestamp in milliseconds since The Epoch) when the client session entity was created or updated (refreshed).- Returns:
- a timestamp in milliseconds since The Epoch or nullwhen the time is unknown
 
 - 
setTimestampvoid setTimestamp(Long timestamp) Sets a point in the (timestamp in milliseconds since The Epoch) when the client session entity was created or updated (refreshed).- Parameters:
- timestamp- a timestamp in milliseconds since The Epoch or- nullwhen the time is unknown
 
 - 
getRealmIdString getRealmId() 
 - 
setRealmIdvoid setRealmId(String realmId) 
 - 
getClientIdString getClientId() 
 - 
setClientIdvoid setClientId(String clientId) 
 - 
getAuthMethodString getAuthMethod() 
 - 
setAuthMethodvoid setAuthMethod(String authMethod) 
 - 
getRedirectUriString getRedirectUri() 
 - 
setRedirectUrivoid setRedirectUri(String redirectUri) 
 - 
getActionString getAction() 
 - 
setActionvoid setAction(String action) 
 - 
getCurrentRefreshTokenString getCurrentRefreshToken() 
 - 
setCurrentRefreshTokenvoid setCurrentRefreshToken(String currentRefreshToken) 
 - 
getCurrentRefreshTokenUseCountInteger getCurrentRefreshTokenUseCount() 
 - 
setCurrentRefreshTokenUseCountvoid setCurrentRefreshTokenUseCount(Integer currentRefreshTokenUseCount) 
 - 
isOfflineBoolean isOffline() 
 - 
setOfflinevoid setOffline(Boolean offline) 
 
- 
 
-