
org.skife.config.SimplePropertyConfigSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of config-magic Show documentation
Show all versions of config-magic Show documentation
A configuration object convenience library.
The newest version!
package org.skife.config;
import java.util.Properties;
public class SimplePropertyConfigSource implements ConfigSource
{
private final Properties props;
public SimplePropertyConfigSource(Properties props)
{
this.props = props;
}
public String getString(String propertyName)
{
return props.getProperty(propertyName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy