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

liquibase.sdk.supplier.change.ChangeSupplier Maven / Gradle / Ivy

There is a newer version: 4.30.0
Show newest version
package liquibase.sdk.supplier.change;

import liquibase.change.Change;
import liquibase.database.Database;
import liquibase.diff.DiffResult;
import liquibase.exception.DatabaseException;

import java.util.Collection;
import java.util.List;

public interface ChangeSupplier {
    Change[] prepareDatabase(T change) throws Exception;

    void checkDiffResult(DiffResult diffResult, T change) throws Exception;

    Change[] revertDatabase(T change) throws Exception;

    Collection getAllParameterPermutations(Database database) throws Exception;

    boolean isValid(Change change, Database database);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy