Package liquibase.util
Class ShowSummaryUtil
- java.lang.Object
-
- liquibase.util.ShowSummaryUtil
-
public class ShowSummaryUtil extends Object
Methods to show a summary of change set counts after an update
-
-
Constructor Summary
Constructors Constructor Description ShowSummaryUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidshowUpdateSummary(DatabaseChangeLog changeLog, UpdateSummaryEnum showSummary, UpdateSummaryOutputEnum showSummaryOutput, StatusVisitor statusVisitor, OutputStream outputStream)Show a summary of the changesets which were executed
-
-
-
Method Detail
-
showUpdateSummary
public static void showUpdateSummary(DatabaseChangeLog changeLog, UpdateSummaryEnum showSummary, UpdateSummaryOutputEnum showSummaryOutput, StatusVisitor statusVisitor, OutputStream outputStream) throws LiquibaseException, IOException
Show a summary of the changesets which were executed- Parameters:
changeLog- The changelog used in this updateshowSummary- Flag to control whether or not we show the summaryshowSummaryOutput- Flag to control where we show the summarystatusVisitor- The StatusVisitor used to determine statusesoutputStream- The OutputStream to use for the summary- Throws:
LiquibaseException- Thrown by this methodIOException- Thrown by this method
-
-