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

liquibase.diff.output.ObjectChangeFilter Maven / Gradle / Ivy

There is a newer version: 4.29.1
Show newest version
package liquibase.diff.output;

import liquibase.database.Database;
import liquibase.diff.ObjectDifferences;
import liquibase.structure.DatabaseObject;

public interface ObjectChangeFilter {

    boolean includeMissing(DatabaseObject object, Database referenceDatabase, Database comparisionDatabase);

    boolean includeUnexpected(DatabaseObject object, Database referenceDatabase, Database comparisionDatabase);

    boolean includeChanged(DatabaseObject object, ObjectDifferences differences, Database referenceDatabase, Database
            comparisionDatabase);

    boolean include(DatabaseObject object);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy