blob: 85756d5627f04aa7e9c5dd74a1e4e411aa276f50 [file] [log] [blame]
Stuart McCulloch26e7a5a2011-10-17 10:31:43 +00001package aQute.lib.osgi;
2
3import java.io.*;
4
5public interface Resource {
6 InputStream openInputStream() throws Exception ;
7 void write(OutputStream out) throws Exception;
8 long lastModified();
9 void setExtra(String extra);
10 String getExtra();
11}