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("schema-version: 1") @Indexed public class HotRodAuthenticatedClientSessionEntity extends AbstractHotRodEntity
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HotRodAuthenticatedClientSessionEntity.AbstractHotRodAuthenticatedClientSessionEntityDelegate
static interface
HotRodAuthenticatedClientSessionEntity.HotRodAuthenticatedClientSessionEntitySchema
-
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
Integer
entityVersion
Long
expiration
String
id
static SearchableModelField<AuthenticatedClientSessionModel>
ID
Set<HotRodPair<String,String>>
notes
Boolean
offline
String
realmId
String
redirectUri
Long
timestamp
static int
VERSION
-
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
-
VERSION
public static final int VERSION
- See Also:
- Constant Field Values
-
ID
public static final SearchableModelField<AuthenticatedClientSessionModel> ID
-
entityVersion
@Basic(projectable=true) @ProtoField(number=1) public Integer entityVersion
-
id
@Basic(projectable=true, sortable=true) @ProtoField(number=2) public String id
-
realmId
@ProtoField(number=3) public String realmId
-
clientId
@ProtoField(number=4) public String clientId
-
authMethod
@ProtoField(number=5) public String authMethod
-
redirectUri
@ProtoField(number=6) public String redirectUri
-
timestamp
@ProtoField(number=7) public Long timestamp
-
expiration
@ProtoField(number=8) public Long expiration
-
action
@ProtoField(number=9) public String action
-
notes
@ProtoField(number=10) public Set<HotRodPair<String,String>> notes
-
currentRefreshToken
@ProtoField(number=11) public String currentRefreshToken
-
currentRefreshTokenUseCount
@ProtoField(number=12) public Integer currentRefreshTokenUseCount
-
offline
@ProtoField(number=13) public Boolean offline
-
-