liquibase.statement.core.AddPrimaryKeyStatement Maven / Gradle / Ivy
package liquibase.statement.core;
import liquibase.statement.SqlStatement;
public class AddPrimaryKeyStatement implements SqlStatement {
private String schemaName;
private String tableName;
private String tablespace;
private String columnNames;
private String constraintName;
public AddPrimaryKeyStatement(String schemaName, String tableName, String columnNames, String constraintName) {
this.schemaName = schemaName;
this.tableName = tableName;
this.columnNames = columnNames;
this.constraintName = constraintName;
}
public String getSchemaName() {
return schemaName;
}
public String getTableName() {
return tableName;
}
public String getTablespace() {
return tablespace;
}
public AddPrimaryKeyStatement setTablespace(String tablespace) {
this.tablespace = tablespace;
return this;
}
public String getColumnNames() {
return columnNames;
}
public String getConstraintName() {
return constraintName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy