Package org.keycloak.models.jpa.entities
Class ClientAttributeEntity
- java.lang.Object
- 
- org.keycloak.models.jpa.entities.ClientAttributeEntity
 
- 
 @Entity public class ClientAttributeEntity extends Object - Author:
- Marek Posolda
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classClientAttributeEntity.Key
 - 
Constructor SummaryConstructors Constructor Description ClientAttributeEntity()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)ClientEntitygetClient()StringgetName()StringgetValue()inthashCode()voidsetClient(ClientEntity client)voidsetName(String name)voidsetValue(String value)
 
- 
- 
- 
Field Detail- 
clientprotected ClientEntity client 
 - 
nameprotected String name 
 - 
valueprotected String value 
 
- 
 - 
Method Detail- 
getClientpublic ClientEntity getClient() 
 - 
setClientpublic void setClient(ClientEntity client) 
 - 
getNamepublic String getName() 
 - 
setNamepublic void setName(String name) 
 - 
getValuepublic String getValue() 
 - 
setValuepublic void setValue(String value) 
 
- 
 
-