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