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 class
ClientAttributeEntity.Key
-
Constructor Summary
Constructors Constructor Description ClientAttributeEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
ClientEntity
getClient()
String
getName()
String
getValue()
int
hashCode()
void
setClient(ClientEntity client)
void
setName(String name)
void
setValue(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)
-
-