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

net.ravendb.client.documents.operations.etl.sql.SqlEtlTable Maven / Gradle / Ivy

package net.ravendb.client.documents.operations.etl.sql;

public class SqlEtlTable {
    private String tableName;
    private String documentIdColumn;
    private boolean insertOnlyMode;

    public String getTableName() {
        return tableName;
    }

    public void setTableName(String tableName) {
        this.tableName = tableName;
    }

    public String getDocumentIdColumn() {
        return documentIdColumn;
    }

    public void setDocumentIdColumn(String documentIdColumn) {
        this.documentIdColumn = documentIdColumn;
    }

    public boolean isInsertOnlyMode() {
        return insertOnlyMode;
    }

    public void setInsertOnlyMode(boolean insertOnlyMode) {
        this.insertOnlyMode = insertOnlyMode;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy