Package org.keycloak.models.jpa.entities
Class ClientScopeClientMappingEntity
- java.lang.Object
-
- org.keycloak.models.jpa.entities.ClientScopeClientMappingEntity
-
@Entity public class ClientScopeClientMappingEntity extends Object
Binding between client and clientScope- Author:
- Marek Posolda
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ClientScopeClientMappingEntity.Key
-
Field Summary
Fields Modifier and Type Field Description protected String
clientId
protected String
clientScopeId
protected boolean
defaultScope
-
Constructor Summary
Constructors Constructor Description ClientScopeClientMappingEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getClientId()
String
getClientScopeId()
int
hashCode()
boolean
isDefaultScope()
void
setClientId(String clientId)
void
setClientScopeId(String clientScopeId)
void
setDefaultScope(boolean defaultScope)
-
-
-
Method Detail
-
getClientScopeId
public String getClientScopeId()
-
setClientScopeId
public void setClientScopeId(String clientScopeId)
-
getClientId
public String getClientId()
-
setClientId
public void setClientId(String clientId)
-
isDefaultScope
public boolean isDefaultScope()
-
setDefaultScope
public void setDefaultScope(boolean defaultScope)
-
-