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

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

There is a newer version: 1.1.9
Show 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 
	 * @param is
	 * @param metaData
	 * @param container
	 * @return
	 * @throws ResourceParseException
	 * @throws IOException
	 */
	public Resource getResource(InputStream is, MetaData parentMetaData, 
			ResourceContainer container) 
	throws ResourceParseException, IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy