public interface SettingManagementService
| Modifier and Type | Method and Description |
|---|---|
Setting |
create(java.lang.String id,
java.lang.String value)
Creates a new engine setting with the provided values.
|
void |
delete(java.lang.String id)
Deletes a given settings.
|
java.util.List<Setting> |
findAll()
Finds all engine settings.
|
Setting |
get(java.lang.String id)
Returns an engine setting with the given id.
|
Setting |
update(java.lang.String id,
java.lang.String value)
Updates an engine setting with the given value.
|
java.util.List<Setting> findAll()
Setting get(java.lang.String id) throws LspsSettingsException
id - the identifier of the settingLspsSettingsException - Setting create(java.lang.String id, java.lang.String value) throws LspsSettingsException
id - the identifier of the settingvalue - the value of the settingLspsSettingsException - Setting update(java.lang.String id, java.lang.String value) throws LspsSettingsException
id - the identifier of the settingvalue - the new value of the settingLspsSettingsException - void delete(java.lang.String id)
throws LspsSettingsException
id - the setting identifierLspsSettingsException - if no setting with the given identifier is foundCopyright © 2007-2020 Whitestein Technologies. All Rights Reserved.