liquibase.changelog.RollbackContainer 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.changelog;
import liquibase.change.Change;
import liquibase.serializer.AbstractLiquibaseSerializable;
import java.util.ArrayList;
import java.util.List;
public class RollbackContainer extends AbstractLiquibaseSerializable {
private List changes = new ArrayList<>();
@Override
public String getSerializedObjectName() {
return "rollback";
}
@Override
public String getSerializedObjectNamespace() {
return STANDARD_CHANGELOG_NAMESPACE;
}
public List getChanges() {
return changes;
}
public void setChanges(List changes) {
this.changes = changes;
}
}