Package liquibase.report
Class StandardShowSummaryGenerator
java.lang.Object
liquibase.report.StandardShowSummaryGenerator
- All Implemented Interfaces:
Plugin,ShowSummaryGenerator
-
Field Summary
Fields inherited from interface liquibase.plugin.Plugin
PRIORITY_DATABASE, PRIORITY_DEFAULT, PRIORITY_NOT_APPLICABLE, PRIORITY_SPECIALIZED -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidappendAdditionalSummaryMessages(StringBuilder builder, ChangeLogIterator runChangeLogIterator) Append any additional summary messages that shuold be reported in the show summary output.getAllAdditionalChangeSetStatus(ChangeLogIterator runChangeLogIterator) Get all additional change set statuses that should be reported in the show summary verbose output.intThis method returns a priority value for an implementation.
-
Constructor Details
-
StandardShowSummaryGenerator
public StandardShowSummaryGenerator()
-
-
Method Details
-
getPriority
public int getPriority()Description copied from interface:ShowSummaryGeneratorThis method returns a priority value for an implementation. Liquibase uses this to determine which LicenseService is currently in use. There can only be a single LicenseService used at a time, and the highest priority implementation wins.- Specified by:
getPriorityin interfaceShowSummaryGenerator- Returns:
- int
-
getAllAdditionalChangeSetStatus
public List<ChangeSetStatus> getAllAdditionalChangeSetStatus(ChangeLogIterator runChangeLogIterator) Description copied from interface:ShowSummaryGeneratorGet all additional change set statuses that should be reported in the show summary verbose output.- Specified by:
getAllAdditionalChangeSetStatusin interfaceShowSummaryGenerator
-
appendAdditionalSummaryMessages
public void appendAdditionalSummaryMessages(StringBuilder builder, ChangeLogIterator runChangeLogIterator) Description copied from interface:ShowSummaryGeneratorAppend any additional summary messages that shuold be reported in the show summary output.- Specified by:
appendAdditionalSummaryMessagesin interfaceShowSummaryGenerator
-