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

aQute.bnd.osgi.Resource Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package aQute.bnd.osgi;

import java.io.InputStream;
import java.io.OutputStream;

public interface Resource {
	InputStream openInputStream() throws Exception;

	void write(OutputStream out) throws Exception;

	long lastModified();

	void setExtra(String extra);

	String getExtra();

	long size() throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy