Package liquibase.report
Interface ShowSummaryGenerator
-
- All Superinterfaces:
Plugin
- All Known Implementing Classes:
StandardShowSummaryGenerator
public interface ShowSummaryGenerator extends Plugin
-
-
Field Summary
-
Fields inherited from interface liquibase.plugin.Plugin
PRIORITY_DATABASE, PRIORITY_DEFAULT, PRIORITY_NOT_APPLICABLE, PRIORITY_SPECIALIZED
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidappendAdditionalSummaryMessages(StringBuilder builder, ChangeLogIterator runChangeLogIterator)Append any additional summary messages that shuold be reported in the show summary output.List<ChangeSetStatus>getAllAdditionalChangeSetStatus(ChangeLogIterator runChangeLogIterator)Get all additional change set statuses that should be reported in the show summary verbose output.intgetPriority()This method returns a priority value for an implementation.
-
-
-
Method Detail
-
getPriority
int getPriority()
This 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.- Returns:
- int
-
getAllAdditionalChangeSetStatus
List<ChangeSetStatus> getAllAdditionalChangeSetStatus(ChangeLogIterator runChangeLogIterator)
Get all additional change set statuses that should be reported in the show summary verbose output.
-
appendAdditionalSummaryMessages
void appendAdditionalSummaryMessages(StringBuilder builder, ChangeLogIterator runChangeLogIterator)
Append any additional summary messages that shuold be reported in the show summary output.
-
-