@RestController
@RequestMapping(value="/open-metadata/ui-admin-services/users/{userId}/servers/{serverName}")
public class UIConfigResource
extends Object
| Constructor and Description |
|---|
UIConfigResource() |
| Modifier and Type | Method and Description |
|---|---|
UIServerConfigResponse |
getCurrentConfiguration(String userId,
String serverName)
Return the stored configuration document for the server.
|
VoidResponse |
setUIServerConfig(String userId,
String serverName,
UIServerConfig uiServerConfig)
Set up the configuration properties for an UI Server in a single command.
|
@RequestMapping(method=GET,
path="/configuration")
public UIServerConfigResponse getCurrentConfiguration(@PathVariable
String userId,
@PathVariable
String serverName)
userId - user that is issuing the requestserverName - local server name@RequestMapping(method=POST,
path="/configuration")
public VoidResponse setUIServerConfig(@PathVariable
String userId,
@PathVariable
String serverName,
@RequestBody
UIServerConfig uiServerConfig)
userId - user that is issuing the requestserverName - local server nameuiServerConfig - configuration for the serverCopyright © 2018–2019 ODPi. All rights reserved.