use of com.thinkbiganalytics.kylo.catalog.rest.model.DataSource in project kylo by Teradata.
the class IntegrationTestBase method getJdbcDataSources.
protected DataSource[] getJdbcDataSources() {
LOG.info("Getting datasources");
Response response = given(DataSourceController.PLUGIN_ID).when().get("?pluginIds=jdbc");
response.then().statusCode(HTTP_OK);
return response.as(DataSource[].class);
}
Aggregations