Class HotRodAuthEventEntity
- java.lang.Object
-
- org.keycloak.models.map.storage.hotRod.common.AbstractHotRodEntity
-
- org.keycloak.models.map.storage.hotRod.events.HotRodAuthEventEntity
-
- All Implemented Interfaces:
UpdatableEntity
@Indexed @ProtoDoc("schema-version: 1") public class HotRodAuthEventEntity extends AbstractHotRodEntity
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HotRodAuthEventEntity.AbstractHotRodAuthEventEntityDelegate
static interface
HotRodAuthEventEntity.HotRodAuthEventEntitySchema
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntity
UpdatableEntity.Impl
-
-
Field Summary
Fields Modifier and Type Field Description String
clientId
Set<HotRodPair<String,String>>
details
Integer
entityVersion
String
error
Long
expiration
String
id
String
ipAddress
String
realmId
String
sessionId
Long
timestamp
Integer
type
String
userId
static int
VERSION
-
Fields inherited from class org.keycloak.models.map.storage.hotRod.common.AbstractHotRodEntity
updated
-
-
Constructor Summary
Constructors Constructor Description HotRodAuthEventEntity()
-
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
-
entityVersion
@Basic(projectable=true) @ProtoField(number=1) public Integer entityVersion
-
id
@ProtoField(number=2) public String id
-
type
@Basic(sortable=true) @ProtoField(number=3) public Integer type
-
expiration
@ProtoField(number=4) public Long expiration
-
timestamp
@Basic(sortable=true) @ProtoField(number=5) public Long timestamp
-
clientId
@Basic(sortable=true) @ProtoField(number=6) public String clientId
-
error
@ProtoField(number=7) public String error
-
ipAddress
@Basic(sortable=true) @ProtoField(number=8) public String ipAddress
-
realmId
@Basic(sortable=true) @ProtoField(number=9) public String realmId
-
sessionId
@ProtoField(number=10) public String sessionId
-
userId
@Basic(sortable=true) @ProtoField(number=11) public String userId
-
details
@ProtoField(number=12) public Set<HotRodPair<String,String>> details
-
-