Interface DataHubNameService
-
- All Known Implementing Classes:
TypeSystemBasedDataHubNameService
public interface DataHubNameServiceA service for managing DataHub server instance configurations that can be accessed from the user interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<DataHubServerInfo>getAllServers()Retrieves all DataHub instances configured in the system.DataHubServerInfogetServer(java.lang.String name)Retrieves a specific DataHub instance configuration.
-
-
-
Method Detail
-
getAllServers
java.util.Collection<DataHubServerInfo> getAllServers()
Retrieves all DataHub instances configured in the system.- Returns:
- a collection of DataHub servers or an empty collection, if there is no a single DataHub configured yet.
-
getServer
DataHubServerInfo getServer(java.lang.String name)
Retrieves a specific DataHub instance configuration.- Parameters:
name- name of the DataHub server configuration to retrieve.- Returns:
- the corresponding server information or
null, if such configuration does not exist.
-
-