All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.odpi.openmetadata.accessservices.analyticsmodeling.responses.DatabasesResponse Maven / Gradle / Ivy

There is a newer version: 3.15
Show newest version
/* 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;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy