
org.daisy.pipeline.modules.ResourceLoader Maven / Gradle / Ivy
package org.daisy.pipeline.modules;
import java.net.URL;
/**
* The Interface ResourceLoader allows to get an accessible URI from the path provided. This is used for loading {@link Component} objects.
*/
public interface ResourceLoader {
/**
* Loads the resource.
*
* @param path the path
* @return the uRL
*/
URL loadResource(String path);
/**
* Loads a list of resources recursively.
*
* @param path the path
* @return the uRL
*/
Iterable loadResources(String path);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy