liquibase.statement.core.DropIndexStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.statement.core;
import liquibase.statement.AbstractSqlStatement;
public class DropIndexStatement extends AbstractSqlStatement {
private String indexName;
private String tableCatalogName;
private String tableSchemaName;
private String tableName;
private String associatedWith;
public DropIndexStatement(String indexName, String tableCatalogName, String tableSchemaName, String tableName, String associatedWith) {
this.tableCatalogName = tableCatalogName;
this.tableSchemaName = tableSchemaName;
this.indexName = indexName;
this.tableName = tableName;
this.associatedWith = associatedWith;
}
public String getTableCatalogName() {
return tableCatalogName;
}
public String getTableSchemaName() {
return tableSchemaName;
}
public String getIndexName() {
return indexName;
}
public String getTableName() {
return tableName;
}
public String getAssociatedWith() {
return associatedWith;
}
public void setAssociatedWith(String associatedWith) {
this.associatedWith = associatedWith;
}
}