org.kuali.common.util.properties.SimplePropertiesService Maven / Gradle / Ivy
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