01: package vicazh.hyperpool.stream.net.http.html;
02:
03: import java.io.*;
04:
05: /**
06: * This class is the superclass of all html sessions
07: *
08: * @author Victor Zhigunov
09: * @version 0.3.13
10: */
11: public class Session extends vicazh.hyperpool.stream.net.http.Session {
12: public Session() {
13: }
14:
15: /**
16: * @param connection
17: * parent connection
18: */
19: public Session(Connection connection) {
20: super (connection);
21: }
22:
23: public void setServer(OutputStream outputstream) throws IOException {
24: setServer(new Stream(this, outputstream));
25: }
26: }
|