org.odpi.openmetadata.accessservices.analyticsmodeling.responses.DatabasesResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of analytics-modeling-api Show documentation
Show all versions of analytics-modeling-api Show documentation
Shared beans for the Analytics Modeling Open Metadata Access Service (OMAS).
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.accessservices.analyticsmodeling.responses;
import java.util.List;
import org.odpi.openmetadata.accessservices.analyticsmodeling.model.ResponseContainerDatabase;
/**
* Response for request of the available databases.
*
*/
public class DatabasesResponse extends AnalyticsModelingOMASAPIResponse {
private List data;
/**
* Set list of databases as response content.
* @param databases set as the response.
*/
public void setDatabasesList(List databases) {
data = databases;
}
/**
* Get list of databases as response content.
* @return databases list.
*/
public List getDatabasesList() {
return data;
}
}