Package jetbrains.buildServer.serverSide
Interface CustomSettingsManager
-
- All Known Implementing Classes:
CustomSettingsManagerImpl
public interface CustomSettingsManagerDeprecated.see Plugin StateRepresents the manager of theCustomSettingss.- Since:
- 7.0
- Author:
- Maxim Podkolzine (maxim.podkolzine@jetbrains.com)
- See Also:
CustomSettings,SettingsMap
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description CustomSettingsgetCustomSettings(String name)Deprecated.Returns theCustomSettingsinstance of the specifiedname.CustomSettingsgetCustomSettings(PluginDescriptor descriptor)Deprecated.A convenient method, which correspond to a call:
-
-
-
Method Detail
-
getCustomSettings
@NotNull CustomSettings getCustomSettings(@NotNull String name)
Deprecated.Returns theCustomSettingsinstance of the specifiedname.It is safe to use the settings in a multi-threaded environment, i.e. to get one or several instances of the same
namein different threads and access them concurrently.- Parameters:
name- the accessor name (can be the plugin name or any internal one).- Returns:
CustomSettingsinstance
-
getCustomSettings
@NotNull CustomSettings getCustomSettings(@NotNull PluginDescriptor descriptor)
Deprecated.A convenient method, which correspond to a call:getCustomSettings(descriptor.getPluginName())
- Parameters:
descriptor- the plugin descriptor- Returns:
CustomSettingsinstance
-
-