aQute.lib.osgi.URLResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bndlib Show documentation
Show all versions of bndlib Show documentation
A Swiss Army Knife for OSGi
package aQute.lib.osgi;
import java.io.*;
import java.net.*;
public class URLResource implements Resource {
URL url;
String extra;
public URLResource(URL url) {
this.url = url;
}
public InputStream openInputStream() throws IOException {
return url.openStream();
}
public String toString() {
return ":" + url.getPath() + ":";
}
public void write(OutputStream out) throws Exception {
FileResource.copy(this, out);
}
public long lastModified() {
return -1;
}
public String getExtra() {
return extra;
}
public void setExtra(String extra) {
this.extra = extra;
}
}