01: package vicazh.hyperpool.stream.net.http;
02:
03: import java.io.*;
04:
05: class DocumentStream extends ClientStream {
06: DocumentStream(Session session, OutputStream outputstream) {
07: super (session, outputstream);
08: }
09:
10: public void head(String method, String file, String version)
11: throws IOException {
12: super .head(method, ((DocumentService) connection.element)
13: .getUrl(), version);
14: }
15: }
|