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

org.archive.resource.ResourceFactory Maven / Gradle / Ivy

The newest version!
package org.archive.resource;

import java.io.IOException;
import java.io.InputStream;


/**
 * @author Brad
 *
 */
public interface ResourceFactory {
	
	/**
	 * Attempts to create a Resource from the InputStream 
	 */
	public Resource getResource(InputStream is, MetaData parentMetaData, 
			ResourceContainer container) 
	throws ResourceParseException, IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy