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

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

There is a newer version: 1.1.9
Show newest version
package org.archive.resource;

import java.io.InputStream;


public interface Resource {
	/**
	 * @return the ResourceContainer holding this Resource
	 */
	public ResourceContainer getContainer();

	/**
	 * @return an InputStream for reading data from this Resource. Use only
	 * once, and assume it is unbuffered
	 */
	public InputStream getInputStream();

	/**
	 * @return the MetaData associated with this Resource
	 */
	public MetaData getMetaData();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy