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

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

package org.fluentlenium.configuration;

/**
 * Properties backend based on java system properties.
 */
public class SystemPropertiesBackend implements PropertiesBackend {
    @Override
    public String getProperty(String propertyName) {
        return System.getProperty(propertyName);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy