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

com.exasol.adapter.document.mapping.SchemaMapping Maven / Gradle / Ivy

The newest version!
package com.exasol.adapter.document.mapping;

import java.util.List;

/**
 * Definition of a schema, consisting of table definitions, mapping from a document to Exasol Virtual Schema. An
 * instance of this class represents a whole schema.
 */
public class SchemaMapping {
    private final List tableMappings;

    /**
     * Create an instance of {@link SchemaMapping}.
     * 
     * @param tableMappings List of {@link TableMapping}s
     */
    public SchemaMapping(final List tableMappings) {
        this.tableMappings = tableMappings;
    }

    /**
     * Gets the {@link TableMapping}s
     * 
     * @return List of {@link TableMapping}s
     */
    public List getTableMappings() {
        return this.tableMappings;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy