Package org.keycloak.models.jpa.entities
Class RealmAttributeEntity
- java.lang.Object
-
- org.keycloak.models.jpa.entities.RealmAttributeEntity
-
@Entity public class RealmAttributeEntity extends Object
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RealmAttributeEntity.Key
-
Constructor Summary
Constructors Constructor Description RealmAttributeEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getName()
RealmEntity
getRealm()
String
getValue()
int
hashCode()
void
setName(String name)
void
setRealm(RealmEntity realm)
void
setValue(String value)
-
-
-
Field Detail
-
realm
protected RealmEntity realm
-
name
protected String name
-
value
protected String value
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getValue
public String getValue()
-
setValue
public void setValue(String value)
-
getRealm
public RealmEntity getRealm()
-
setRealm
public void setRealm(RealmEntity realm)
-
-