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