liquibase.command.CleanUpCommandStep 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.command;
import liquibase.exception.LiquibaseException;
/**
* Interface implemented by CommandSteps when they need to execute clean up tasks (such as closing database
* connections, flushing files, etc) after other steps in the pipeline are executed.
*/
public interface CleanUpCommandStep {
/**
* Method invoked to execute the cleanup action.
* @param resultsBuilder builder used in this pipeline
*/
void cleanUp(CommandResultsBuilder resultsBuilder);
}