Uses of Class
org.exoplatform.commons.api.settings.data.Scope
Packages that use Scope
Package
Description
Provides the API for the Setting service.
Provides enum types and classes for key specifications in the Setting service.
-
Uses of Scope in org.exoplatform.commons.api.settings
Methods in org.exoplatform.commons.api.settings that return types with arguments of type ScopeModifier and TypeMethodDescriptionSettingService.getSettingsByContext(Context context) Get settings related to a scope and a contextMethods in org.exoplatform.commons.api.settings with parameters of type ScopeModifier and TypeMethodDescriptionSettingValue<?> Gets values associated with a specified composite key (context, scope, key) in the database.voidRemoves all values associated with a specified context and scope from the database.voidRemoves a value associated with a specified composite key.voidSettingService.set(Context context, Scope scope, String key, SettingValue<?> value) Sets a value with the key that is composed by context, scope, key. -
Uses of Scope in org.exoplatform.commons.api.settings.data
Fields in org.exoplatform.commons.api.settings.data declared as ScopeModifier and TypeFieldDescriptionstatic final ScopeScope.APPLICATIONSettings of an application, like Forum, Content, or Social.static final ScopeScope.GLOBALSettings of the whole eXo Platform (all sites and portals).static final ScopeScope.PAGESettings of pages.static final ScopeScope.PORTALSettings of the entire portal (and all its sites).protected ScopeSettingScope.scopestatic final ScopeScope.SITESettings of sites.static final ScopeScope.SPACESettings of spaces.static final ScopeScope.WINDOWSSettings of portlets or gadgets.Methods in org.exoplatform.commons.api.settings.data that return ScopeModifier and TypeMethodDescriptionScope.clone()SettingScope.getScope()Gets a scope value of the SettingScope object.Methods in org.exoplatform.commons.api.settings.data with parameters of type ScopeModifier and TypeMethodDescriptionstatic StringTools.buildScopePath(Context context, Scope scope) Builds a path of a specified scope in the database.Constructors in org.exoplatform.commons.api.settings.data with parameters of type ScopeModifierConstructorDescriptionSettingKey(Context context, Scope scope, String key) Creates a SettingKey with a composite value [context, scope, key].SettingScope(Context context, Scope scope) Creates a setting scope object with a composite key [context, scope].