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 class
DefaultClientScopeRealmMappingEntity.Key
-
Field Summary
Fields Modifier and Type Field Description protected String
clientScopeId
protected boolean
defaultScope
protected RealmEntity
realm
-
Constructor Summary
Constructors Constructor Description DefaultClientScopeRealmMappingEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getClientScopeId()
RealmEntity
getRealm()
int
hashCode()
boolean
isDefaultScope()
void
setClientScopeId(String clientScopeId)
void
setDefaultScope(boolean defaultScope)
void
setRealm(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)
-
-