Class HotRodResourceEntity
- java.lang.Object
-
- org.keycloak.models.map.storage.hotRod.common.AbstractHotRodEntity
-
- org.keycloak.models.map.storage.hotRod.authorization.HotRodResourceEntity
-
- All Implemented Interfaces:
UpdatableEntity
@ProtoDoc("@Indexed") @ProtoDoc("schema-version: 1") public class HotRodResourceEntity extends AbstractHotRodEntity
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HotRodResourceEntity.AbstractHotRodResourceEntity
static interface
HotRodResourceEntity.HotRodResourceEntitySchema
-
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
displayName
Integer
entityVersion
String
iconUri
String
id
String
name
String
nameLowercase
String
owner
Boolean
ownerManagedAccess
String
realmId
String
resourceServerId
Set<String>
scopeIds
String
type
Set<String>
uris
static int
VERSION
-
Fields inherited from class org.keycloak.models.map.storage.hotRod.common.AbstractHotRodEntity
updated
-
-
Constructor Summary
Constructors Constructor Description HotRodResourceEntity()
-
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
@ProtoField(number=4) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public String name
-
nameLowercase
@ProtoField(number=5) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public String nameLowercase
-
displayName
@ProtoField(number=6) public String displayName
-
uris
@ProtoField(number=7) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public Set<String> uris
-
type
@ProtoField(number=8) @ProtoDoc("@Field(index = Index.YES, store = Store.YES, analyze = Analyze.YES, analyzer = @Analyzer(definition = \"filename\"))") public String type
-
iconUri
@ProtoField(number=9) public String iconUri
-
owner
@ProtoField(number=10) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public String owner
-
ownerManagedAccess
@ProtoField(number=11) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public Boolean ownerManagedAccess
-
resourceServerId
@ProtoField(number=12) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public String resourceServerId
-
scopeIds
@ProtoField(number=13) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public Set<String> scopeIds
-
attributes
@ProtoField(number=14) public Set<HotRodAttributeEntityNonIndexed> attributes
-
-