Interface MapAuthenticatedClientSessionEntity
-
- All Superinterfaces:
AbstractEntity
,UpdatableEntity
- All Known Implementing Classes:
HotRodAuthenticatedClientSessionEntity.AbstractHotRodAuthenticatedClientSessionEntityDelegate
,HotRodAuthenticatedClientSessionEntityDelegate
,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 class
MapAuthenticatedClientSessionEntity.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 String
getAction()
String
getAuthMethod()
String
getClientId()
String
getCurrentRefreshToken()
Integer
getCurrentRefreshTokenUseCount()
Long
getExpiration()
String
getNote(String name)
Map<String,String>
getNotes()
String
getRealmId()
String
getRedirectUri()
Long
getTimestamp()
String
getUserSessionId()
Boolean
isOffline()
Boolean
removeNote(String name)
void
setAction(String action)
void
setAuthMethod(String authMethod)
void
setClientId(String clientId)
void
setCurrentRefreshToken(String currentRefreshToken)
void
setCurrentRefreshTokenUseCount(Integer currentRefreshTokenUseCount)
void
setExpiration(Long expiration)
void
setNote(String name, String value)
void
setNotes(Map<String,String> notes)
void
setOffline(Boolean offline)
void
setRealmId(String realmId)
void
setRedirectUri(String redirectUri)
void
setTimestamp(Long timestamp)
void
setUserSessionId(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)
-
-