001package org.kuali.common.util.properties; 002 003import java.util.List; 004import java.util.Properties; 005 006public class SimplePropertiesService implements PropertiesService { 007 008 @Override 009 public Properties getProperties(List<Location> locations) { 010 Properties properties = new Properties(); 011 for (Location location : locations) { 012 Properties loaded = new LocationLoader(location).load(); 013 properties.putAll(loaded); 014 } 015 return properties; 016 } 017 018}