use of com.thinkbiganalytics.metadata.rest.model.data.JdbcDatasource in project kylo by Teradata.
the class IntegrationTestBase method getDatasources.
protected JdbcDatasource[] getDatasources() {
LOG.info("Getting datasources");
Response response = given(DatasourceController.BASE).when().get("?type=UserDatasource");
response.then().statusCode(HTTP_OK);
return response.as(JdbcDatasource[].class);
}
Aggregations