Gitiles
Code Review
Sign In
gerrit.onosproject.org
/
onos-felix
/
b3d699f5c2c022eae4db9dee752f86b4bc6646e6
/
.
/
bundleplugin
/
src
/
main
/
java
/
aQute
/
lib
/
osgi
/
Resource.java
blob: 85756d5627f04aa7e9c5dd74a1e4e411aa276f50 [
file
] [
log
] [
blame
]
package
aQute
.
lib
.
osgi
;
import
java
.
io
.*;
public
interface
Resource
{
InputStream
openInputStream
()
throws
Exception
;
void
write
(
OutputStream
out
)
throws
Exception
;
long
lastModified
();
void
setExtra
(
String
extra
);
String
getExtra
();
}