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

org.daisy.pipeline.modules.ResourceLoader Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version
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