liquibase.configuration.AbstractConfigurationValueProvider Maven / Gradle / Ivy
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 {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy