Class HotRodRoleEntity
- java.lang.Object
-
- org.keycloak.models.map.storage.hotRod.common.AbstractHotRodEntity
-
- org.keycloak.models.map.storage.hotRod.role.HotRodRoleEntity
-
- All Implemented Interfaces:
UpdatableEntity
@ProtoDoc("@Indexed") @ProtoDoc("schema-version: 1") public class HotRodRoleEntity extends AbstractHotRodEntity
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HotRodRoleEntity.AbstractHotRodRoleEntityDelegate
static interface
HotRodRoleEntity.HotRodRoleEntitySchema
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntity
UpdatableEntity.Impl
-
-
Field Summary
Fields Modifier and Type Field Description Set<HotRodAttributeEntityNonIndexed>
attributes
String
clientId
Boolean
clientRole
Set<String>
compositeRoles
String
description
Integer
entityVersion
String
id
String
name
String
nameLowercase
Lowercase interpretation ofname
field.String
realmId
static int
VERSION
-
Fields inherited from class org.keycloak.models.map.storage.hotRod.common.AbstractHotRodEntity
updated
-
-
Constructor Summary
Constructors Constructor Description HotRodRoleEntity()
-
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
@ProtoDoc("@Field(index = Index.YES, store = Store.YES)") @ProtoField(number=1) public Integer entityVersion
-
id
@ProtoDoc("@Field(index = Index.YES, store = Store.YES)") @ProtoField(number=2) public String id
-
realmId
@ProtoDoc("@Field(index = Index.YES, store = Store.YES)") @ProtoField(number=3) public String realmId
-
name
@ProtoDoc("@Field(index = Index.YES, store = Store.YES)") @ProtoField(number=4) public String name
-
nameLowercase
@ProtoDoc("@Field(index = Index.YES, store = Store.YES)") @ProtoField(number=5) public String nameLowercase
Lowercase interpretation ofname
field. Infinispan doesn't support case-insensitive LIKE for non-analyzed fields. Search on analyzed fields can be case-insensitive (based on used analyzer) but doesn't support ORDER BY analyzed field.
-
description
@ProtoDoc("@Field(index = Index.YES, store = Store.YES, analyze = Analyze.YES, analyzer = @Analyzer(definition = \"filename\"))") @ProtoField(number=6) public String description
-
clientRole
@ProtoDoc("@Field(index = Index.YES, store = Store.YES)") @ProtoField(number=7) public Boolean clientRole
-
clientId
@ProtoDoc("@Field(index = Index.YES, store = Store.YES)") @ProtoField(number=8) public String clientId
-
compositeRoles
@ProtoDoc("@Field(index = Index.YES, store = Store.YES)") @ProtoField(number=9) public Set<String> compositeRoles
-
attributes
@ProtoField(number=10) public Set<HotRodAttributeEntityNonIndexed> attributes
-
-