package liquibase.statement.core; import liquibase.statement.AbstractSqlStatement; public class DropPrimaryKeyStatement extends AbstractSqlStatement { private String catalogName; private String schemaName; private String tableName; private String constraintName; private Boolean dropIndex; public DropPrimaryKeyStatement(String catalogName, String schemaName, String tableName, String constraintName) { this.catalogName = catalogName; this.schemaName = schemaName; this.tableName = tableName; this.constraintName = constraintName; } public String getCatalogName() { return catalogName; } public String getSchemaName() { return schemaName; } public String getTableName() { return tableName; } public String getConstraintName() { return constraintName; } public Boolean getDropIndex() { return dropIndex; } public void setDropIndex(Boolean dropIndex) { this.dropIndex = dropIndex; } }