org.jlot.client.config.PropertiesPropertySource Maven / Gradle / Ivy
package org.jlot.client.config;
import java.util.Properties;
import org.springframework.core.env.PropertySource;
public class PropertiesPropertySource extends PropertySource
{
public PropertiesPropertySource ( String name, Properties properties )
{
super(name, properties);
}
@Override
public Object getProperty ( String name )
{
return getSource().get(name);
}
}