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 Summary
Nested Classes Modifier and Type Class Description static class
ClientScopeAttributeEntity.Key
-
Field Summary
Fields Modifier and Type Field Description protected ClientScopeEntity
clientScope
protected String
name
protected String
value
-
Constructor Summary
Constructors Constructor Description ClientScopeAttributeEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
ClientScopeEntity
getClientScope()
String
getName()
String
getValue()
int
hashCode()
void
setClientScope(ClientScopeEntity clientScope)
void
setName(String name)
void
setValue(String value)
-
-
-
Field Detail
-
clientScope
protected ClientScopeEntity clientScope
-
name
protected String name
-
value
protected String value
-
-
Method Detail
-
getClientScope
public ClientScopeEntity getClientScope()
-
setClientScope
public void setClientScope(ClientScopeEntity clientScope)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getValue
public String getValue()
-
setValue
public void setValue(String value)
-
-