Class HotRodPolicyEntity
- java.lang.Object
-
- org.keycloak.models.map.storage.hotRod.common.AbstractHotRodEntity
-
- org.keycloak.models.map.storage.hotRod.authorization.HotRodPolicyEntity
-
- All Implemented Interfaces:
UpdatableEntity
@ProtoDoc("@Indexed") @ProtoDoc("schema-version: 1") public class HotRodPolicyEntity extends AbstractHotRodEntity
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HotRodPolicyEntity.AbstractHotRodPolicyEntity
static interface
HotRodPolicyEntity.HotRodPolicyEntitySchema
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntity
UpdatableEntity.Impl
-
-
Field Summary
Fields Modifier and Type Field Description Set<String>
associatedPolicyIds
Set<HotRodStringPair>
configs
Integer
decisionStrategy
String
description
Integer
entityVersion
String
id
Integer
logic
String
name
String
nameLowercase
String
owner
String
realmId
Set<String>
resourceIds
String
resourceServerId
Set<String>
scopeIds
String
type
static int
VERSION
-
Fields inherited from class org.keycloak.models.map.storage.hotRod.common.AbstractHotRodEntity
updated
-
-
Constructor Summary
Constructors Constructor Description HotRodPolicyEntity()
-
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
-
description
@ProtoField(number=6) public String description
-
type
@ProtoField(number=7) @ProtoDoc("@Field(index = Index.YES, store = Store.YES, analyze = Analyze.YES, analyzer = @Analyzer(definition = \"filename\"))") public String type
-
decisionStrategy
@ProtoField(number=8) public Integer decisionStrategy
-
logic
@ProtoField(number=9) public Integer logic
-
configs
@ProtoField(number=10) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public Set<HotRodStringPair> configs
-
resourceServerId
@ProtoField(number=11) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public String resourceServerId
-
associatedPolicyIds
@ProtoField(number=12) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public Set<String> associatedPolicyIds
-
resourceIds
@ProtoField(number=13) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public Set<String> resourceIds
-
scopeIds
@ProtoField(number=14) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public Set<String> scopeIds
-
owner
@ProtoField(number=15) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public String owner
-
-