All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.harness.util.rollback.RollbackStrategy.groovy Maven / Gradle / Ivy

There is a newer version: 1.0.10
Show newest version
package liquibase.harness.util.rollback;

import liquibase.harness.config.DatabaseUnderTest;

interface RollbackStrategy {
    void prepareForRollback(List databases);

    void performRollback(Map commandArgs);

    void cleanupDatabase(List databases)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy