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

net.interfax.rest.client.config.EnvironmentVariableLookup Maven / Gradle / Ivy

There is a newer version: 0.2
Show newest version
package net.interfax.rest.client.config;

import org.apache.commons.lang3.text.StrLookup;

public class EnvironmentVariableLookup extends StrLookup {

    @Override
    public String lookup(String key) {
        return System.getenv(key);
    }
}