@RestController
@RequestMapping(value="/open-metadata/platform-services/users/{userId}/server-platform")
public class OMAGServerPlatformActiveResource
extends Object
| Constructor and Description |
|---|
OMAGServerPlatformActiveResource() |
| Modifier and Type | Method and Description |
|---|---|
ServerListResponse |
getActiveServerList(String userId)
Return the list of OMAG Servers that are active on this OMAG Server Platform.
|
ServerServicesListResponse |
getActiveServiceListForServer(String userId,
String serverName)
Return the list of services that are active on a specific OMAG Server that is active on this OMAG Server Platform.
|
RegisteredOMAGServicesResponse |
getAllRegisteredServices(String userId)
Return the list of all services that are registered (supported) in this OMAG Server Platform.
|
ServerListResponse |
getKnownServerList(String userId)
Return the list of OMAG Servers that have run or are running in this OMAG Server Platform.
|
RegisteredOMAGServicesResponse |
getRegisteredAccessServices(String userId)
Return the list of access services that are registered (supported) in this OMAG Server Platform
and can be configured for a metadata server.
|
RegisteredOMAGServicesResponse |
getRegisteredCommonServices(String userId)
Return the list of common services that are registered (supported) in this OMAG Server Platform
and can be configured as part of any server.
|
RegisteredOMAGServicesResponse |
getRegisteredGovernanceServices(String userId)
Return the list of governance services that are registered (supported) in this OMAG Server Platform
and can be configured as part of a governance server.
|
RegisteredOMAGServicesResponse |
getRegisteredIntegrationServices(String userId)
Return the list of integration services that are implemented in this OMAG Server Platform
and can be configured for a metadata server.
|
RegisteredOMAGServicesResponse |
getRegisteredViewServices(String userId)
Return the list of view services that are registered (supported) in this OMAG Server Platform
and can be configured for a metadata server.
|
ServerStatusResponse |
getServerStatus(String userId,
String serverName)
Return information about when the server has been active.
|
BooleanResponse |
isServerKnown(String userId,
String serverName)
Return a flag to indicate if this server has ever run on this OMAG Server Platform.
|
@GetMapping(path="/registered-services/access-services") public RegisteredOMAGServicesResponse getRegisteredAccessServices(@PathVariable String userId)
userId - calling user@GetMapping(path="/registered-services/integration-services") public RegisteredOMAGServicesResponse getRegisteredIntegrationServices(@PathVariable String userId)
userId - calling user@GetMapping(path="/registered-services/view-services") public RegisteredOMAGServicesResponse getRegisteredViewServices(@PathVariable String userId)
userId - calling user@GetMapping(path="/registered-services/governance-services") public RegisteredOMAGServicesResponse getRegisteredGovernanceServices(@PathVariable String userId)
userId - calling user@GetMapping(path="/registered-services/common-services") public RegisteredOMAGServicesResponse getRegisteredCommonServices(@PathVariable String userId)
userId - calling user@GetMapping(path="/registered-services") public RegisteredOMAGServicesResponse getAllRegisteredServices(@PathVariable String userId)
userId - calling user@GetMapping(path="/servers/{serverName}/is-known")
public BooleanResponse isServerKnown(@PathVariable
String userId,
@PathVariable
String serverName)
userId - calling userserverName - server of interest@GetMapping(path="/servers") public ServerListResponse getKnownServerList(@PathVariable String userId)
userId - calling user@GetMapping(path="/servers/active") public ServerListResponse getActiveServerList(@PathVariable String userId)
userId - name of the user making the request@GetMapping(path="/servers/{serverName}/status")
public ServerStatusResponse getServerStatus(@PathVariable
String userId,
@PathVariable
String serverName)
userId - name of the user making the requestserverName - name of the server of interest@GetMapping(path="/servers/{serverName}/services")
public ServerServicesListResponse getActiveServiceListForServer(@PathVariable
String userId,
@PathVariable
String serverName)
userId - name of the user making the requestserverName - name of the server of interestCopyright © 2018–2020 ODPi. All rights reserved.