Package org.keycloak.models.jpa.entities
Class ClientScopeAttributeEntity
- java.lang.Object
- 
- org.keycloak.models.jpa.entities.ClientScopeAttributeEntity
 
- 
 @Entity public class ClientScopeAttributeEntity extends Object - Author:
- Marek Posolda
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classClientScopeAttributeEntity.Key
 - 
Field SummaryFields Modifier and Type Field Description protected ClientScopeEntityclientScopeprotected Stringnameprotected Stringvalue
 - 
Constructor SummaryConstructors Constructor Description ClientScopeAttributeEntity()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)ClientScopeEntitygetClientScope()StringgetName()StringgetValue()inthashCode()voidsetClientScope(ClientScopeEntity clientScope)voidsetName(String name)voidsetValue(String value)
 
- 
- 
- 
Field Detail- 
clientScopeprotected ClientScopeEntity clientScope 
 - 
nameprotected String name 
 - 
valueprotected String value 
 
- 
 - 
Method Detail- 
getClientScopepublic ClientScopeEntity getClientScope() 
 - 
setClientScopepublic void setClientScope(ClientScopeEntity clientScope) 
 - 
getNamepublic String getName() 
 - 
setNamepublic void setName(String name) 
 - 
getValuepublic String getValue() 
 - 
setValuepublic void setValue(String value) 
 
- 
 
-