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

org.odpi.openmetadata.accessservices.analyticsmodeling.responses.SchemaTablesResponse 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. */


/**
 * Response for request of the tables of the schema. 
 * 
 *
 */

package org.odpi.openmetadata.accessservices.analyticsmodeling.responses;

import java.util.Arrays;

import org.odpi.openmetadata.accessservices.analyticsmodeling.model.ResponseContainerSchemaTables;

public class SchemaTablesResponse extends AnalyticsModelingOMASAPIResponse {
	
	/**
	 * Set list of tables of the schema.
	 * @param tables to set.
	 */
    public void setTableList(ResponseContainerSchemaTables tables) {
        this.setData(Arrays.asList(tables));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy