1 package org.kuali.common.util.properties; 2 3 import java.util.List; 4 5 import org.kuali.common.util.project.model.FeatureIdentifier; 6 import org.kuali.common.util.project.model.ProjectIdentifier; 7 8 public interface PropertiesLocationService { 9 10 public List<Location> getLocations(ProjectIdentifier identifier, List<String> filenames); 11 12 public List<Location> getLocations(ProjectIdentifier identifier, String... filenames); 13 14 public Location getLocation(ProjectIdentifier identifier, String filename); 15 16 public Location getLocation(FeatureIdentifier identifier, String filename); 17 18 public List<Location> getLocations(FeatureIdentifier identifier, String... filenames); 19 20 public List<Location> getLocations(FeatureIdentifier identifier, List<String> filenames); 21 22 }