Package org.keycloak.models
Interface ClientScopeModel
- 
- All Superinterfaces:
- OrderedModel,- ProtocolMapperContainerModel,- ScopeContainerModel
 - All Known Subinterfaces:
- ClientModel
 - All Known Implementing Classes:
- AbstractClientModel,- AbstractClientScopeModel,- AbstractClientStorageAdapter,- AbstractReadOnlyClientScopeAdapter,- AbstractReadOnlyClientStorageAdapter,- ClientAdapter,- ClientAdapter,- ClientModelLazyDelegate,- ClientModelLazyDelegate.WithId,- ClientScopeAdapter,- ClientScopeAdapter,- MapClientAdapter,- MapClientScopeAdapter,- OIDCClientSecretConfigWrapper.ReadOnlyRotatedSecretClientModel,- OpenshiftSAClientAdapter,- UnsupportedOperationsClientStorageAdapter
 
 public interface ClientScopeModel extends ProtocolMapperContainerModel, ScopeContainerModel, OrderedModel - Version:
- $Revision: 1 $
- Author:
- Bill Burke
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static interfaceClientScopeModel.ClientScopeRemovedEventstatic classClientScopeModel.SearchableFields- 
Nested classes/interfaces inherited from interface org.keycloak.models.OrderedModelOrderedModel.OrderedModelComparator<OM extends OrderedModel>
 
- 
 - 
Field SummaryFields Modifier and Type Field Description static StringCONSENT_SCREEN_TEXTstatic StringDISPLAY_ON_CONSENT_SCREENstatic StringDYNAMIC_SCOPE_REGEXPstatic StringGUI_ORDERstatic StringINCLUDE_IN_TOKEN_SCOPEstatic StringIS_DYNAMIC_SCOPE
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StringgetAttribute(String name)Map<String,String>getAttributes()default StringgetConsentScreenText()StringgetDescription()default StringgetDynamicScopeRegexp()default StringgetGuiOrder()StringgetId()StringgetName()StringgetProtocol()RealmModelgetRealm()default booleanisDisplayOnConsentScreen()default booleanisDynamicScope()default booleanisIncludeInTokenScope()voidremoveAttribute(String name)voidsetAttribute(String name, String value)default voidsetConsentScreenText(String consentScreenText)voidsetDescription(String description)default voidsetDisplayOnConsentScreen(boolean displayOnConsentScreen)default voidsetGuiOrder(String guiOrder)default voidsetIncludeInTokenScope(boolean includeInTokenScope)default voidsetIsDynamicScope(boolean isDynamicScope)voidsetName(String name)voidsetProtocol(String protocol)- 
Methods inherited from interface org.keycloak.models.ProtocolMapperContainerModeladdProtocolMapper, getProtocolMapperById, getProtocolMapperByName, getProtocolMappersStream, removeProtocolMapper, updateProtocolMapper
 - 
Methods inherited from interface org.keycloak.models.ScopeContainerModeladdScopeMapping, deleteScopeMapping, getRealmScopeMappingsStream, getScopeMappingsStream, hasDirectScope, hasScope
 
- 
 
- 
- 
- 
Field Detail- 
DISPLAY_ON_CONSENT_SCREENstatic final String DISPLAY_ON_CONSENT_SCREEN - See Also:
- Constant Field Values
 
 - 
CONSENT_SCREEN_TEXTstatic final String CONSENT_SCREEN_TEXT - See Also:
- Constant Field Values
 
 - 
GUI_ORDERstatic final String GUI_ORDER - See Also:
- Constant Field Values
 
 - 
INCLUDE_IN_TOKEN_SCOPEstatic final String INCLUDE_IN_TOKEN_SCOPE - See Also:
- Constant Field Values
 
 - 
IS_DYNAMIC_SCOPEstatic final String IS_DYNAMIC_SCOPE - See Also:
- Constant Field Values
 
 - 
DYNAMIC_SCOPE_REGEXPstatic final String DYNAMIC_SCOPE_REGEXP - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
getIdString getId() 
 - 
getNameString getName() 
 - 
getRealmRealmModel getRealm() 
 - 
setNamevoid setName(String name) 
 - 
getDescriptionString getDescription() 
 - 
setDescriptionvoid setDescription(String description) 
 - 
getProtocolString getProtocol() 
 - 
setProtocolvoid setProtocol(String protocol) 
 - 
removeAttributevoid removeAttribute(String name) 
 - 
isDisplayOnConsentScreendefault boolean isDisplayOnConsentScreen() 
 - 
setDisplayOnConsentScreendefault void setDisplayOnConsentScreen(boolean displayOnConsentScreen) 
 - 
getConsentScreenTextdefault String getConsentScreenText() 
 - 
setConsentScreenTextdefault void setConsentScreenText(String consentScreenText) 
 - 
getGuiOrderdefault String getGuiOrder() - Specified by:
- getGuiOrderin interface- OrderedModel
 
 - 
setGuiOrderdefault void setGuiOrder(String guiOrder) 
 - 
isIncludeInTokenScopedefault boolean isIncludeInTokenScope() 
 - 
setIncludeInTokenScopedefault void setIncludeInTokenScope(boolean includeInTokenScope) 
 - 
isDynamicScopedefault boolean isDynamicScope() 
 - 
setIsDynamicScopedefault void setIsDynamicScope(boolean isDynamicScope) 
 - 
getDynamicScopeRegexpdefault String getDynamicScopeRegexp() 
 
- 
 
-