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

net.thucydides.core.util.SystemEnvironmentVariables Maven / Gradle / Ivy

There is a newer version: 0.9.275
Show newest version
package net.thucydides.core.util;

/**
 * Return system environment variable values.
 */
public class SystemEnvironmentVariables implements EnvironmentVariables {

    public String getValue(final String name) {
        return getValue(name, null);
    }

    public String getValue(final String name, final String defaultValue) {
        String value = System.getenv(name);
        if (value == null) {
            return defaultValue;
        } else {
            return value;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy