liquibase.statement.core.MarkChangeSetRanStatement 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.changelog.ChangeSet;
import liquibase.statement.AbstractSqlStatement;
public class MarkChangeSetRanStatement extends AbstractSqlStatement {
private ChangeSet changeSet;
private ChangeSet.ExecType execType;
public MarkChangeSetRanStatement(ChangeSet changeSet, ChangeSet.ExecType execType) {
this.changeSet = changeSet;
this.execType = execType;
}
public ChangeSet getChangeSet() {
return changeSet;
}
public ChangeSet.ExecType getExecType() {
return execType;
}
}