com.exasol.adapter.document.mapping.SchemaMapping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtual-schema-common-document Show documentation
Show all versions of virtual-schema-common-document Show documentation
Common module of Exasol Virtual Schema Adapters for Document Data Sources.
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;
}
}