Package org.keycloak.models.jpa.entities
Class ClientScopeRoleMappingEntity
- java.lang.Object
-
- org.keycloak.models.jpa.entities.ClientScopeRoleMappingEntity
-
@Entity public class ClientScopeRoleMappingEntity extends Object
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ClientScopeRoleMappingEntity.Key
-
Field Summary
Fields Modifier and Type Field Description protected ClientScopeEntity
clientScope
protected RoleEntity
role
-
Constructor Summary
Constructors Constructor Description ClientScopeRoleMappingEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
ClientScopeEntity
getClientScope()
RoleEntity
getRole()
int
hashCode()
void
setClientScope(ClientScopeEntity clientScope)
void
setRole(RoleEntity role)
-
-
-
Field Detail
-
clientScope
protected ClientScopeEntity clientScope
-
role
protected RoleEntity role
-
-
Method Detail
-
getClientScope
public ClientScopeEntity getClientScope()
-
setClientScope
public void setClientScope(ClientScopeEntity clientScope)
-
getRole
public RoleEntity getRole()
-
setRole
public void setRole(RoleEntity role)
-
-