liquibase.plugin.PluginFactory 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.plugin;
import liquibase.SingletonObject;
/**
* Interface for classes that manage {@link Plugin}s.
* Normally the factories will use a "priority" mechanism where they assign a priority to each object and return the plugin object with the highest priority.
*/
public interface PluginFactory extends SingletonObject {
}