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 Summary
Nested Classes Modifier and Type Class Description static classClientAttributeEntity.Key
-
Constructor Summary
Constructors Constructor Description ClientAttributeEntity()
-
Method Summary
All 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
-
client
protected ClientEntity client
-
name
protected String name
-
value
protected String value
-
-
Method Detail
-
getClient
public ClientEntity getClient()
-
setClient
public void setClient(ClientEntity client)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getValue
public String getValue()
-
setValue
public void setValue(String value)
-
-