liquibase.configuration.AbstractConfigurationValueProvider 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.configuration;
import liquibase.command.CommandScope;
/**
* Convenience base class for {@link ConfigurationValueProvider} implementations
*/
public abstract class AbstractConfigurationValueProvider implements ConfigurationValueProvider {
/**
* Default implementation does no checking
*/
@Override
public void validate(CommandScope commandScope) throws IllegalArgumentException {
}
}