01: package vicazh.hyperpool.stream.net.http; 02: 03: import vicazh.hyperpool.stream.*; 04: 05: class HttpsConnection extends Connection { 06: HttpsConnection(Element element) { 07: super (element); 08: } 09: 10: protected Session getSession() { 11: return new HttpsSession(this); 12: } 13: }