Package org.keycloak.models.jpa.entities
Class GroupAttributeEntity
- java.lang.Object
-
- org.keycloak.models.jpa.entities.GroupAttributeEntity
-
@Entity public class GroupAttributeEntity extends Object
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Constructor Summary
Constructors Constructor Description GroupAttributeEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)GroupEntitygetGroup()StringgetId()StringgetName()StringgetValue()inthashCode()voidsetGroup(GroupEntity group)voidsetId(String id)voidsetName(String name)voidsetValue(String value)
-
-
-
Field Detail
-
id
protected String id
-
group
protected GroupEntity group
-
name
protected String name
-
value
protected String value
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getValue
public String getValue()
-
setValue
public void setValue(String value)
-
getGroup
public GroupEntity getGroup()
-
setGroup
public void setGroup(GroupEntity group)
-
-