liquibase.hub.model.OperationChange 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.hub.model;
import liquibase.changelog.ChangeSet;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
public class OperationChange implements HubModel {
private Project project;
private Operation operation;
private List changeSets = new ArrayList<>();
@Override
public UUID getId() {
return null;
}
public Project getProject() {
return project;
}
public OperationChange setProject(Project project) {
this.project = project;
return this;
}
public Operation getOperation() {
return operation;
}
public OperationChange setOperation(Operation operation) {
this.operation = operation;
return this;
}
public List getChangeSets() {
return changeSets;
}
}