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

liquibase.change.AbstractTableChange Maven / Gradle / Ivy

There is a newer version: 4.29.2
Show newest version
package liquibase.change;

public abstract class AbstractTableChange extends AbstractChange {
    protected String catalogName;
    protected String schemaName;
    protected String tableName;

    @DatabaseChangeProperty(since = "3.0", mustEqualExisting ="table.catalog")
    public String getCatalogName() {
        return catalogName;
    }

    public void setCatalogName(String catalogName) {
        this.catalogName = catalogName;
    }

    @DatabaseChangeProperty(mustEqualExisting ="table.schema")
    public String getSchemaName() {
        return schemaName;
    }

    public void setSchemaName(String schemaName) {
        this.schemaName = schemaName;
    }

    @DatabaseChangeProperty(
            description="Name of the table",
            mustEqualExisting= "table", requiredForDatabase = ChangeParameterMetaData.ALL)
    public String getTableName() {
        return tableName;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy