blob: d619f47e192a04be7ea4fc53ace55512131df3a6 [file] [log] [blame]
Stuart McCullochf29ef3f2008-12-04 07:58:07 +00001/* Copyright 2006 aQute SARL
2 * Licensed under the Apache License, Version 2.0, see http://www.apache.org/licenses/LICENSE-2.0 */
3package aQute.lib.osgi;
4
5import java.io.*;
6
7public interface Resource {
8 InputStream openInputStream() throws IOException ;
9 void write(OutputStream out) throws IOException;
10 long lastModified();
11 void setExtra(String extra);
12 String getExtra();
13}