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

com.aventstack.chaintest.conf.ConfigResolver Maven / Gradle / Ivy

The newest version!
package com.aventstack.chaintest.conf;

public class ConfigResolver {

    public static String get(final String prop) {
        if (System.getProperty(prop) != null) {
            return System.getProperty(prop);
        }
        if (System.getenv(prop) != null) {
            return System.getenv(prop);
        }
        return ConfigurationManager.getValue(prop);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy