Package org.keycloak.models.jpa.entities
Class DefaultClientScopeRealmMappingEntity
- java.lang.Object
-
- org.keycloak.models.jpa.entities.DefaultClientScopeRealmMappingEntity
-
@Entity public class DefaultClientScopeRealmMappingEntity extends Object
Binding between realm and default clientScope- Author:
- Marek Posolda
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDefaultClientScopeRealmMappingEntity.Key
-
Field Summary
Fields Modifier and Type Field Description protected StringclientScopeIdprotected booleandefaultScopeprotected RealmEntityrealm
-
Constructor Summary
Constructors Constructor Description DefaultClientScopeRealmMappingEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetClientScopeId()RealmEntitygetRealm()inthashCode()booleanisDefaultScope()voidsetClientScopeId(String clientScopeId)voidsetDefaultScope(boolean defaultScope)voidsetRealm(RealmEntity realm)
-
-
-
Field Detail
-
clientScopeId
protected String clientScopeId
-
realm
protected RealmEntity realm
-
defaultScope
protected boolean defaultScope
-
-
Method Detail
-
getClientScopeId
public String getClientScopeId()
-
setClientScopeId
public void setClientScopeId(String clientScopeId)
-
getRealm
public RealmEntity getRealm()
-
setRealm
public void setRealm(RealmEntity realm)
-
isDefaultScope
public boolean isDefaultScope()
-
setDefaultScope
public void setDefaultScope(boolean defaultScope)
-
-