Class JpaClientSessionEntity
- java.lang.Object
-
- org.keycloak.models.map.common.UpdatableEntity.Impl
-
- org.keycloak.models.map.userSession.MapAuthenticatedClientSessionEntity.AbstractAuthenticatedClientSessionEntity
-
- org.keycloak.models.map.storage.jpa.userSession.entity.JpaClientSessionEntity
-
- All Implemented Interfaces:
Serializable
,AbstractEntity
,ExpirableEntity
,UpdatableEntity
,JpaChildEntity<JpaUserSessionEntity>
,JpaRootEntity
,JpaRootVersionedEntity
,MapAuthenticatedClientSessionEntity
@Entity public class JpaClientSessionEntity extends MapAuthenticatedClientSessionEntity.AbstractAuthenticatedClientSessionEntity implements JpaRootVersionedEntity, JpaChildEntity<JpaUserSessionEntity>
Entity represents authenticated client session.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.userSession.MapAuthenticatedClientSessionEntity
MapAuthenticatedClientSessionEntity.AbstractAuthenticatedClientSessionEntity
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntity
UpdatableEntity.Impl
-
-
Field Summary
-
Fields inherited from class org.keycloak.models.map.common.UpdatableEntity.Impl
updated
-
-
Constructor Summary
Constructors Constructor Description JpaClientSessionEntity()
No-argument constructor, used by hibernate to instantiate entities.JpaClientSessionEntity(DeepCloner cloner)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getAction()
String
getAuthMethod()
String
getClientId()
String
getCurrentRefreshToken()
Integer
getCurrentRefreshTokenUseCount()
Integer
getCurrentSchemaVersion()
Integer
getEntityVersion()
Long
getExpiration()
Returns a point in the time (timestamp in milliseconds since The Epoch) when this entity expires.String
getId()
String
getNote(String name)
Map<String,String>
getNotes()
JpaUserSessionEntity
getParent()
Parent entity that should get its optimistic locking version updated upon changes in the childString
getRealmId()
String
getRedirectUri()
Long
getTimestamp()
Returns a point in time (timestamp in milliseconds since The Epoch) when the client session entity was created or updated (refreshed).int
getVersion()
Version of the JPA entity used for optimistic lockingint
hashCode()
boolean
isMetadataInitialized()
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
setEntityVersion(Integer entityVersion)
void
setExpiration(Long expiration)
Sets a point in the time (timestamp in milliseconds since The Epoch) when this entity expires.void
setId(String id)
void
setNote(String name, String value)
void
setNotes(Map<String,String> notes)
void
setOffline(Boolean offline)
void
setParent(JpaUserSessionEntity root)
void
setRealmId(String realmId)
void
setRedirectUri(String redirectUri)
void
setTimestamp(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 class org.keycloak.models.map.common.UpdatableEntity.Impl
clearUpdatedFlag, isUpdated
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.keycloak.models.map.storage.jpa.JpaRootEntity
updateEntityVersion
-
Methods inherited from interface org.keycloak.models.map.common.UpdatableEntity
clearUpdatedFlag, isUpdated
-
-
-
-
Constructor Detail
-
JpaClientSessionEntity
public JpaClientSessionEntity()
No-argument constructor, used by hibernate to instantiate entities.
-
JpaClientSessionEntity
public JpaClientSessionEntity(DeepCloner cloner)
-
-
Method Detail
-
isMetadataInitialized
public boolean isMetadataInitialized()
-
getParent
public JpaUserSessionEntity getParent()
Description copied from interface:JpaChildEntity
Parent entity that should get its optimistic locking version updated upon changes in the child- Specified by:
getParent
in interfaceJpaChildEntity<JpaUserSessionEntity>
-
setParent
public void setParent(JpaUserSessionEntity root)
-
getEntityVersion
public Integer getEntityVersion()
- Specified by:
getEntityVersion
in interfaceJpaRootEntity
- Returns:
- current supported version of the JPA entity used for schema versioning.
-
setEntityVersion
public void setEntityVersion(Integer entityVersion)
- Specified by:
setEntityVersion
in interfaceJpaRootEntity
- Parameters:
entityVersion
- sets current supported version to JPA entity.
-
getCurrentSchemaVersion
public Integer getCurrentSchemaVersion()
- Specified by:
getCurrentSchemaVersion
in interfaceJpaRootEntity
-
getVersion
public int getVersion()
Description copied from interface:JpaRootVersionedEntity
Version of the JPA entity used for optimistic locking- Specified by:
getVersion
in interfaceJpaRootVersionedEntity
-
getId
public String getId()
- Specified by:
getId
in interfaceAbstractEntity
- Overrides:
getId
in classMapAuthenticatedClientSessionEntity.AbstractAuthenticatedClientSessionEntity
-
setId
public void setId(String id)
- Specified by:
setId
in interfaceAbstractEntity
- Overrides:
setId
in classMapAuthenticatedClientSessionEntity.AbstractAuthenticatedClientSessionEntity
-
getRealmId
public String getRealmId()
- Specified by:
getRealmId
in interfaceMapAuthenticatedClientSessionEntity
-
setRealmId
public void setRealmId(String realmId)
- Specified by:
setRealmId
in interfaceMapAuthenticatedClientSessionEntity
-
getClientId
public String getClientId()
- Specified by:
getClientId
in interfaceMapAuthenticatedClientSessionEntity
-
setClientId
public void setClientId(String clientId)
- Specified by:
setClientId
in interfaceMapAuthenticatedClientSessionEntity
-
getAuthMethod
public String getAuthMethod()
- Specified by:
getAuthMethod
in interfaceMapAuthenticatedClientSessionEntity
-
setAuthMethod
public void setAuthMethod(String authMethod)
- Specified by:
setAuthMethod
in interfaceMapAuthenticatedClientSessionEntity
-
getRedirectUri
public String getRedirectUri()
- Specified by:
getRedirectUri
in interfaceMapAuthenticatedClientSessionEntity
-
setRedirectUri
public void setRedirectUri(String redirectUri)
- Specified by:
setRedirectUri
in interfaceMapAuthenticatedClientSessionEntity
-
getTimestamp
public Long getTimestamp()
Description copied from interface:MapAuthenticatedClientSessionEntity
Returns a point in time (timestamp in milliseconds since The Epoch) when the client session entity was created or updated (refreshed).- Specified by:
getTimestamp
in interfaceMapAuthenticatedClientSessionEntity
- Returns:
- a timestamp in milliseconds since The Epoch or
null
when the time is unknown
-
setTimestamp
public void setTimestamp(Long timestamp)
Description copied from interface:MapAuthenticatedClientSessionEntity
Sets a point in the (timestamp in milliseconds since The Epoch) when the client session entity was created or updated (refreshed).- Specified by:
setTimestamp
in interfaceMapAuthenticatedClientSessionEntity
- Parameters:
timestamp
- a timestamp in milliseconds since The Epoch ornull
when the time is unknown
-
getExpiration
public Long getExpiration()
Description copied from interface:ExpirableEntity
Returns a point in the time (timestamp in milliseconds since The Epoch) when this entity expires.- Specified by:
getExpiration
in interfaceExpirableEntity
- Returns:
- a timestamp in milliseconds since The Epoch or
null
if this entity never expires or expiration is not known.
-
setExpiration
public void setExpiration(Long expiration)
Description copied from interface:ExpirableEntity
Sets a point in the time (timestamp in milliseconds since The Epoch) when this entity expires.- Specified by:
setExpiration
in interfaceExpirableEntity
- Parameters:
expiration
- a timestamp in milliseconds since The Epoch ornull
if this entity never expires.
-
getAction
public String getAction()
- Specified by:
getAction
in interfaceMapAuthenticatedClientSessionEntity
-
setAction
public void setAction(String action)
- Specified by:
setAction
in interfaceMapAuthenticatedClientSessionEntity
-
getCurrentRefreshToken
public String getCurrentRefreshToken()
- Specified by:
getCurrentRefreshToken
in interfaceMapAuthenticatedClientSessionEntity
-
setCurrentRefreshToken
public void setCurrentRefreshToken(String currentRefreshToken)
- Specified by:
setCurrentRefreshToken
in interfaceMapAuthenticatedClientSessionEntity
-
getCurrentRefreshTokenUseCount
public Integer getCurrentRefreshTokenUseCount()
- Specified by:
getCurrentRefreshTokenUseCount
in interfaceMapAuthenticatedClientSessionEntity
-
setCurrentRefreshTokenUseCount
public void setCurrentRefreshTokenUseCount(Integer currentRefreshTokenUseCount)
- Specified by:
setCurrentRefreshTokenUseCount
in interfaceMapAuthenticatedClientSessionEntity
-
isOffline
public Boolean isOffline()
- Specified by:
isOffline
in interfaceMapAuthenticatedClientSessionEntity
-
setOffline
public void setOffline(Boolean offline)
- Specified by:
setOffline
in interfaceMapAuthenticatedClientSessionEntity
-
getNotes
public Map<String,String> getNotes()
- Specified by:
getNotes
in interfaceMapAuthenticatedClientSessionEntity
-
setNotes
public void setNotes(Map<String,String> notes)
- Specified by:
setNotes
in interfaceMapAuthenticatedClientSessionEntity
-
getNote
public String getNote(String name)
- Specified by:
getNote
in interfaceMapAuthenticatedClientSessionEntity
-
removeNote
public Boolean removeNote(String name)
- Specified by:
removeNote
in interfaceMapAuthenticatedClientSessionEntity
-
setNote
public void setNote(String name, String value)
- Specified by:
setNote
in interfaceMapAuthenticatedClientSessionEntity
-
-