liquibase.statement.core.SetNullableStatement 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 SetNullableStatement extends AbstractSqlStatement {
private String catalogName;
private String schemaName;
private String tableName;
private String columnName;
private String columnDataType;
private boolean nullable;
private String constraintName;
private boolean validate = true;
public SetNullableStatement(String catalogName, String schemaName, String tableName, String columnName, String columnDataType, boolean nullable) {
this.catalogName = catalogName;
this.schemaName = schemaName;
this.tableName = tableName;
this.columnName = columnName;
this.columnDataType = columnDataType;
this.nullable = nullable;
}
public SetNullableStatement(String catalogName, String schemaName, String tableName, String columnName, String columnDataType, boolean nullable, String constraintName) {
this(catalogName, schemaName, tableName, columnName, columnDataType, nullable);
this.constraintName = constraintName;
}
public SetNullableStatement(String catalogName, String schemaName, String tableName, String columnName,
String columnDataType, boolean nullable, String constraintName, Boolean validate) {
this(catalogName, schemaName, tableName, columnName, columnDataType, nullable);
this.constraintName = constraintName;
if (validate!=null) {
this.validate = validate;
}
}
public String getCatalogName() {
return catalogName;
}
public String getSchemaName() {
return schemaName;
}
public String getTableName() {
return tableName;
}
public String getColumnName() {
return columnName;
}
public String getColumnDataType() {
return columnDataType;
}
public boolean isNullable() {
return nullable;
}
public String getConstraintName() {
return constraintName;
}
public boolean isValidate() {
return validate;
}
public void setValidate(boolean validate) {
this.validate = validate;
}
}