01: package vicazh.hyperpool.stream.net.http;
02:
03: import java.io.*;
04:
05: class DocumentSession extends Session {
06:
07: DocumentSession(Connection connection) {
08: super (connection);
09: }
10:
11: public void setClient(OutputStream outputstream) {
12: setClient(new DocumentStream(this, outputstream));
13: }
14: }
|