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