@RestController
@RequestMapping(value="/rest",
produces={"application/xml","application/json"})
public class ConfigurationEntryRestController
extends HerdBaseController
| Modifier and Type | Field and Description |
|---|---|
static String |
CONFIGURATION_ENTRIES_URI_PREFIX |
| Constructor and Description |
|---|
ConfigurationEntryRestController() |
| Modifier and Type | Method and Description |
|---|---|
ConfigurationEntryKeys |
getConfigurationEntries()
Gets a list of configuration entry keys for all configuration entries defined in the system.
|
ConfigurationEntry |
getConfigurationEntry(String configurationEntryKey)
Gets an existing configuration entry by its configuration entry key.
|
addPagingHttpHeaders, validateNoDuplicateQueryStringParamspublic static final String CONFIGURATION_ENTRIES_URI_PREFIX
@RequestMapping(value="/configurationEntries/{configurationEntryKey}",
method=GET)
@Secured(value="FN_CONFIGURATION_ENTRIES_GET")
public ConfigurationEntry getConfigurationEntry(@PathVariable(value="configurationEntryKey")
String configurationEntryKey)
configurationEntryKey - the key of the configuration entry@RequestMapping(value="/configurationEntries",
method=GET)
@Secured(value="FN_CONFIGURATION_ENTRIES_ALL_GET")
public ConfigurationEntryKeys getConfigurationEntries()
Copyright © 2021. All rights reserved.