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

org.kuali.common.util.properties.SimplePropertiesService Maven / Gradle / Ivy

There is a newer version: 4.4.17
Show newest version
package org.kuali.common.util.properties;

import java.util.List;
import java.util.Properties;

public class SimplePropertiesService implements PropertiesService {

	@Override
	public Properties getProperties(List locations) {
		Properties properties = new Properties();
		for (Location location : locations) {
			Properties loaded = new LocationLoader(location).load();
			properties.putAll(loaded);
		}
		return properties;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy