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

org.jlot.client.config.PropertiesPropertySource Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy