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{

	/**
	 * Set list of databases as response content.
	 * @param databases set as the response.
	 */
    public void setDatabasesList(List databases) {
        this.setData(databases);
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy