
com.aventstack.chaintest.conf.ConfigResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chaintest-core Show documentation
Show all versions of chaintest-core Show documentation
Core Java client library for ChainTest framework
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