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

org.openl.config.PropertiesHolder Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
package org.openl.config;

import java.util.Map;

import org.springframework.core.env.PropertyResolver;

public interface PropertiesHolder {
    void setProperty(String key, Object value);

    String getProperty(String key);

    void revertProperties(String... keys);

    Map getConfig();

    PropertyResolver getPropertyResolver();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy