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

org.fluentlenium.configuration.EnvironmentVariablesBackend Maven / Gradle / Ivy

package org.fluentlenium.configuration;

/**
 * Properties backend based on environment variables.
 */
public class EnvironmentVariablesBackend implements PropertiesBackend {
    @Override
    public String getProperty(String propertyName) {
        return System.getenv(propertyName);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy