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") public class HotRodGroupEntity extends AbstractHotRodEntity
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HotRodGroupEntity.AbstractHotRodGroupEntityDelegate
-
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
int
entityVersion
Set<String>
grantedRoles
String
id
String
name
String
nameLowercase
Lowercase interpretation ofname
field.String
parentId
String
realmId
-
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
-
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
-
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
@ProtoField(number=7) public Set<HotRodAttributeEntityNonIndexed> attributes
-
-