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

liquibase.servicelocator.PackageScanFilter Maven / Gradle / Ivy

package liquibase.servicelocator;

/**
 * Filter that can be used with the {@link PackageScanClassResolver} resolver.
 */
public interface PackageScanFilter {

    /**
     * Does the given class match
     *
     * @param type the class
     * @return true to include this class, false to skip it.
     */
    boolean matches(Class type);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy