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

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

/* 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.ResponseContainerDatabaseSchema;


/**
 * Response for request of the available database schemas. 
 *
 */
public class SchemasResponse extends AnalyticsModelingOMASAPIResponse{

	private List data;
	/**
	 * Set list of schemas available for database.
	 * @param databaseSchemas set as response.
	 */
    public void setSchemaList(List databaseSchemas) {
    	data = databaseSchemas;
    }

	/**
	 * Get list of schemas available for database.
	 * @return list of schemas available for database.
	 */
	public List getSchemaList() {
        return data;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy