
liquibase.ext.ora.settransaction.SetTransactionStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-oracle Show documentation
Show all versions of liquibase-oracle Show documentation
Some tags to work on Oracle DB.
package liquibase.ext.ora.settransaction;
import liquibase.statement.AbstractSqlStatement;
import liquibase.statement.SqlStatement;
public class SetTransactionStatement extends AbstractSqlStatement {
private String transactionName;
private String rollbackSegment;
private String isolationLevel;
private String readOnlyWrite;
public SetTransactionStatement(String transactionName, String isolationLevel, String rollbackSegment, String readOnlyWrite) {
this.transactionName = transactionName;
this.rollbackSegment = rollbackSegment;
this.isolationLevel = isolationLevel;
this.readOnlyWrite = readOnlyWrite;
}
public String getTransactionName() {
return transactionName;
}
public void setTransactionName(String transactionName) {
this.transactionName = transactionName;
}
public String getRollbackSegment() {
return rollbackSegment;
}
public void setRollbackSegment(String rollbackSegment) {
this.rollbackSegment = rollbackSegment;
}
public String getIsolationLevel() {
return isolationLevel;
}
public void setIsolationLevel(String isolationLevel) {
this.isolationLevel = isolationLevel;
}
public String getReadOnlyWrite() {
return readOnlyWrite;
}
public void setReadOnlyWrite(String readOnlyWrite) {
this.readOnlyWrite = readOnlyWrite;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy