Package org.keycloak.models.jpa.entities
Class RoleEntity
- java.lang.Object
- 
- org.keycloak.models.jpa.entities.RoleEntity
 
- 
 @Entity public class RoleEntity extends Object - Version:
- $Revision: 1 $
- Author:
- Bill Burke
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected List<RoleAttributeEntity>attributes
 - 
Constructor SummaryConstructors Constructor Description RoleEntity()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)List<RoleAttributeEntity>getAttributes()StringgetClientId()StringgetClientRealmConstraint()Set<RoleEntity>getCompositeRoles()StringgetDescription()StringgetId()StringgetName()StringgetRealmId()inthashCode()booleanisClientRole()voidsetAttributes(List<RoleAttributeEntity> attributes)voidsetClientId(String clientId)voidsetClientRealmConstraint(String clientRealmConstraint)voidsetClientRole(boolean clientRole)voidsetCompositeRoles(Set<RoleEntity> compositeRoles)voidsetDescription(String description)voidsetId(String id)voidsetName(String name)voidsetRealmId(String realmId)
 
- 
- 
- 
Field Detail- 
attributesprotected List<RoleAttributeEntity> attributes 
 
- 
 - 
Method Detail- 
getIdpublic String getId() 
 - 
setIdpublic void setId(String id) 
 - 
getRealmIdpublic String getRealmId() 
 - 
setRealmIdpublic void setRealmId(String realmId) 
 - 
getAttributespublic List<RoleAttributeEntity> getAttributes() 
 - 
setAttributespublic void setAttributes(List<RoleAttributeEntity> attributes) 
 - 
getNamepublic String getName() 
 - 
setNamepublic void setName(String name) 
 - 
getDescriptionpublic String getDescription() 
 - 
setDescriptionpublic void setDescription(String description) 
 - 
getCompositeRolespublic Set<RoleEntity> getCompositeRoles() 
 - 
setCompositeRolespublic void setCompositeRoles(Set<RoleEntity> compositeRoles) 
 - 
isClientRolepublic boolean isClientRole() 
 - 
setClientRolepublic void setClientRole(boolean clientRole) 
 - 
getClientIdpublic String getClientId() 
 - 
setClientIdpublic void setClientId(String clientId) 
 - 
getClientRealmConstraintpublic String getClientRealmConstraint() 
 - 
setClientRealmConstraintpublic void setClientRealmConstraint(String clientRealmConstraint) 
 
- 
 
-