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

org.kuali.common.util.properties.PropertiesLocationService 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 org.kuali.common.util.project.model.FeatureIdentifier;
import org.kuali.common.util.project.model.ProjectIdentifier;

public interface PropertiesLocationService {

	public List getLocations(ProjectIdentifier identifier, List filenames);

	public List getLocations(ProjectIdentifier identifier, String... filenames);

	public Location getLocation(ProjectIdentifier identifier, String filename);

	public Location getLocation(FeatureIdentifier identifier, String filename);

	public List getLocations(FeatureIdentifier identifier, String... filenames);

	public List getLocations(FeatureIdentifier identifier, List filenames);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy