Class HotRodUserEntity
- java.lang.Object
-
- org.keycloak.models.map.storage.hotRod.common.AbstractHotRodEntity
-
- org.keycloak.models.map.storage.hotRod.user.HotRodUserEntity
-
- All Implemented Interfaces:
UpdatableEntity
@ProtoDoc("@Indexed") @ProtoDoc("schema-version: 1") public class HotRodUserEntity extends AbstractHotRodEntity
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HotRodUserEntity.AbstractHotRodUserEntityDelegate
static interface
HotRodUserEntity.HotRodUserEntitySchema
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntity
UpdatableEntity.Impl
-
-
Field Summary
-
Fields inherited from class org.keycloak.models.map.storage.hotRod.common.AbstractHotRodEntity
updated
-
-
Constructor Summary
Constructors Constructor Description HotRodUserEntity()
-
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
-
username
@ProtoField(number=4) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public String username
-
usernameLowercase
@ProtoField(number=22) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public String usernameLowercase
-
firstName
@ProtoField(number=5) @ProtoDoc("@Field(index = Index.YES, store = Store.YES, analyze = Analyze.YES, analyzer = @Analyzer(definition = \"filename\"))") public String firstName
-
createdTimestamp
@ProtoField(number=6) public Long createdTimestamp
-
lastName
@ProtoField(number=7) @ProtoDoc("@Field(index = Index.YES, store = Store.YES, analyze = Analyze.YES, analyzer = @Analyzer(definition = \"filename\"))") public String lastName
-
email
@ProtoField(number=8) @ProtoDoc("@Field(index = Index.YES, store = Store.YES, analyze = Analyze.YES, analyzer = @Analyzer(definition = \"filename\"))") public String email
-
enabled
@ProtoField(number=9) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public Boolean enabled
-
emailVerified
@ProtoField(number=10) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public Boolean emailVerified
-
emailConstraint
@ProtoField(number=11) public String emailConstraint
-
attributes
@ProtoField(number=12) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public Set<HotRodAttributeEntity> attributes
-
credentials
@ProtoField(number=14) public List<HotRodUserCredentialEntity> credentials
-
federatedIdentities
@ProtoField(number=15) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public Set<HotRodUserFederatedIdentityEntity> federatedIdentities
-
userConsents
@ProtoField(number=16) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public Set<HotRodUserConsentEntity> userConsents
-
groupsMembership
@ProtoField(number=17) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public Set<String> groupsMembership
-
rolesMembership
@ProtoField(number=18) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public Set<String> rolesMembership
-
federationLink
@ProtoField(number=19) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public String federationLink
-
serviceAccountClientLink
@ProtoField(number=20) @ProtoDoc("@Field(index = Index.YES, store = Store.YES)") public String serviceAccountClientLink
-
notBefore
@ProtoField(number=21) public Long notBefore
-
-