Class HotRodGroupEntity
- java.lang.Object
-
- org.keycloak.models.map.storage.hotRod.common.AbstractHotRodEntity
-
- org.keycloak.models.map.storage.hotRod.group.HotRodGroupEntity
-
- All Implemented Interfaces:
UpdatableEntity
@ProtoDoc("@Indexed") @ProtoDoc("schema-version: 1") public class HotRodGroupEntity extends AbstractHotRodEntity
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HotRodGroupEntity.AbstractHotRodGroupEntityDelegate
static interface
HotRodGroupEntity.HotRodGroupEntitySchema
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntity
UpdatableEntity.Impl
-
-
Field Summary
Fields Modifier and Type Field Description Set<HotRodAttributeEntity>
attributes
Integer
entityVersion
Set<String>
grantedRoles
String
id
String
name
String
nameLowercase
Lowercase interpretation ofname
field.String
parentId
String
realmId
static int
VERSION
-
Fields inherited from class org.keycloak.models.map.storage.hotRod.common.AbstractHotRodEntity
updated
-
-
Constructor Summary
Constructors Constructor Description HotRodGroupEntity()
-
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.
-
parentId
@ProtoDoc("@Field(index = Index.YES, store = Store.YES)") @ProtoField(number=6) public String parentId
-
attributes
@ProtoDoc("@Field(index = Index.YES, store = Store.YES)") @ProtoField(number=7) public Set<HotRodAttributeEntity> attributes
-
-