Package org.keycloak.models.jpa.entities
Class GroupEntity
- java.lang.Object
- 
- org.keycloak.models.jpa.entities.GroupEntity
 
- 
 @Entity public class GroupEntity extends Object - Version:
- $Revision: 1 $
- Author:
- Bill Burke
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected Collection<GroupAttributeEntity>attributesprotected Stringidprotected Stringnamestatic StringTOP_PARENT_IDID set in the PARENT column to mark the group as top level.
 - 
Constructor SummaryConstructors Constructor Description GroupEntity()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Collection<GroupAttributeEntity>getAttributes()StringgetId()StringgetName()StringgetParentId()StringgetRealm()inthashCode()voidsetAttributes(Collection<GroupAttributeEntity> attributes)voidsetId(String id)voidsetName(String name)voidsetParentId(String parentId)voidsetRealm(String realm)
 
- 
- 
- 
Field Detail- 
TOP_PARENT_IDpublic static String TOP_PARENT_ID ID set in the PARENT column to mark the group as top level.
 - 
idprotected String id 
 - 
nameprotected String name 
 - 
attributesprotected Collection<GroupAttributeEntity> attributes 
 
- 
 - 
Method Detail- 
getIdpublic String getId() 
 - 
setIdpublic void setId(String id) 
 - 
getAttributespublic Collection<GroupAttributeEntity> getAttributes() 
 - 
setAttributespublic void setAttributes(Collection<GroupAttributeEntity> attributes) 
 - 
getNamepublic String getName() 
 - 
setNamepublic void setName(String name) 
 - 
getRealmpublic String getRealm() 
 - 
setRealmpublic void setRealm(String realm) 
 - 
getParentIdpublic String getParentId() 
 - 
setParentIdpublic void setParentId(String parentId) 
 
- 
 
-