Package org.keycloak.models.jpa.entities
Class RoleAttributeEntity
- java.lang.Object
- 
- org.keycloak.models.jpa.entities.RoleAttributeEntity
 
- 
 @Entity public class RoleAttributeEntity extends Object - Author:
- Leon Graser
 
- 
- 
Constructor SummaryConstructors Constructor Description RoleAttributeEntity()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetId()StringgetName()RoleEntitygetRole()StringgetValue()inthashCode()voidsetId(String id)voidsetName(String name)voidsetRole(RoleEntity role)voidsetValue(String value)
 
- 
- 
- 
Field Detail- 
idprotected String id 
 - 
roleprotected RoleEntity role 
 - 
nameprotected String name 
 - 
valueprotected String value 
 
- 
 - 
Method Detail- 
getIdpublic String getId() 
 - 
setIdpublic void setId(String id) 
 - 
getNamepublic String getName() 
 - 
setNamepublic void setName(String name) 
 - 
getValuepublic String getValue() 
 - 
setValuepublic void setValue(String value) 
 - 
getRolepublic RoleEntity getRole() 
 - 
setRolepublic void setRole(RoleEntity role) 
 
- 
 
-