liquibase.report.StandardShowSummaryGenerator 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.
The newest version!
package liquibase.report;
import liquibase.changelog.ChangeLogIterator;
import liquibase.changelog.ChangeSetStatus;
import java.util.Collections;
import java.util.List;
public class StandardShowSummaryGenerator implements ShowSummaryGenerator {
@Override
public int getPriority() {
return PRIORITY_DEFAULT;
}
@Override
public List getAllAdditionalChangeSetStatus(ChangeLogIterator runChangeLogIterator) {
return Collections.emptyList();
}
@Override
public void appendAdditionalSummaryMessages(StringBuilder builder, ChangeLogIterator runChangeLogIterator) {
}
}