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 SummaryNested Classes Modifier and Type Class Description static classDefaultClientScopeRealmMappingEntity.Key
 - 
Field SummaryFields Modifier and Type Field Description protected StringclientScopeIdprotected booleandefaultScopeprotected RealmEntityrealm
 - 
Constructor SummaryConstructors Constructor Description DefaultClientScopeRealmMappingEntity()
 - 
Method SummaryAll 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- 
clientScopeIdprotected String clientScopeId 
 - 
realmprotected RealmEntity realm 
 - 
defaultScopeprotected boolean defaultScope 
 
- 
 - 
Method Detail- 
getClientScopeIdpublic String getClientScopeId() 
 - 
setClientScopeIdpublic void setClientScopeId(String clientScopeId) 
 - 
getRealmpublic RealmEntity getRealm() 
 - 
setRealmpublic void setRealm(RealmEntity realm) 
 - 
isDefaultScopepublic boolean isDefaultScope() 
 - 
setDefaultScopepublic void setDefaultScope(boolean defaultScope) 
 
- 
 
-