Interface DataSourceRuntimeManagerClientService
-
public interface DataSourceRuntimeManagerClientServiceConvenient client side methods to interact with the DataSourceRuntimeManager.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataSourceDeploymentInfogetDataSourceDeploymentInfo(String uuid)Gets the runtime information about a data source.DriverDeploymentInfogetDriverDeploymentInfo(String uuid)Gets the runtime information about a driver.TestResulttestDataSource(String uuid)Tests a data source in the data source management system.
-
-
-
Method Detail
-
getDataSourceDeploymentInfo
DataSourceDeploymentInfo getDataSourceDeploymentInfo(String uuid)
Gets the runtime information about a data source.- Parameters:
uuid- data source identifier.- Returns:
- the runtime information about the data source or null if no data source was registered with the given uuid.
-
getDriverDeploymentInfo
DriverDeploymentInfo getDriverDeploymentInfo(String uuid)
Gets the runtime information about a driver.- Parameters:
uuid- driver identifier.- Returns:
- the runtime information about the driver or null if not driver was registered with the given uuid.
-
testDataSource
TestResult testDataSource(String uuid)
Tests a data source in the data source management system.- Parameters:
uuid- data source identifier to test.- Returns:
- a TestResult object with the information about the test.
-
-