liquibase.configuration.ConfigurationContainer 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 java.util.Set;
/**
* @deprecated interface from old style configuration code. Use {@link ConfigurationDefinition} and {@link AutoloadedConfigurations} now.
*/
public interface ConfigurationContainer {
/**
* @deprecated
*/
ConfigurationProperty getProperty(String propertyName);
/**
* @deprecated
*/
Set getProperties();
/**
* @deprecated
*/
T getValue(String propertyName, Class returnType);
/**
* @deprecated
*/
void setValue(String propertyName, Object value);
/**
* @deprecated
*/
String getNamespace();
}