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

liquibase.configuration.ConfigurationContainer Maven / Gradle / Ivy

There is a newer version: 4.29.2
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy