Class HotRodAuthenticatedClientSessionEntity
- java.lang.Object
-
- org.keycloak.models.map.storage.hotRod.common.AbstractHotRodEntity
-
- org.keycloak.models.map.storage.hotRod.userSession.HotRodAuthenticatedClientSessionEntity
-
- All Implemented Interfaces:
UpdatableEntity
@ProtoDoc("@Indexed") public class HotRodAuthenticatedClientSessionEntity extends AbstractHotRodEntity
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HotRodAuthenticatedClientSessionEntity.AbstractHotRodAuthenticatedClientSessionEntityDelegate
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntity
UpdatableEntity.Impl
-
-
Field Summary
Fields Modifier and Type Field Description String
action
String
authMethod
String
clientId
String
currentRefreshToken
Integer
currentRefreshTokenUseCount
int
entityVersion
Long
expiration
String
id
Set<HotRodPair<String,String>>
notes
Boolean
offline
String
realmId
String
redirectUri
Long
timestamp
String
userSessionId
-
Fields inherited from class org.keycloak.models.map.storage.hotRod.common.AbstractHotRodEntity
updated
-
-
Constructor Summary
Constructors Constructor Description HotRodAuthenticatedClientSessionEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
hashCode()
-
Methods inherited from class org.keycloak.models.map.storage.hotRod.common.AbstractHotRodEntity
clearUpdatedFlag, isUpdated
-
-
-
-
Field Detail
-
entityVersion
@ProtoField(number=1, required=true) public int entityVersion
-
id
@ProtoDoc("@Field(index = Index.YES, store = Store.YES)") @ProtoField(number=2, required=true) public String id
-
userSessionId
@ProtoDoc("@Field(index = Index.YES, store = Store.YES)") @ProtoField(number=3) public String userSessionId
-
realmId
@ProtoDoc("@Field(index = Index.YES, store = Store.YES)") @ProtoField(number=4) public String realmId
-
clientId
@ProtoDoc("@Field(index = Index.YES, store = Store.YES)") @ProtoField(number=5) public String clientId
-
authMethod
@ProtoField(number=6) public String authMethod
-
redirectUri
@ProtoField(number=7) public String redirectUri
-
timestamp
@ProtoField(number=8) public Long timestamp
-
expiration
@ProtoField(number=9) public Long expiration
-
action
@ProtoField(number=10) public String action
-
notes
@ProtoField(number=11) public Set<HotRodPair<String,String>> notes
-
currentRefreshToken
@ProtoField(number=12) public String currentRefreshToken
-
currentRefreshTokenUseCount
@ProtoField(number=13) public Integer currentRefreshTokenUseCount
-
offline
@ProtoDoc("@Field(index = Index.YES, store = Store.YES)") @ProtoField(number=14) public Boolean offline
-
-