01: package vicazh.hyperpool.stream.net.http.html; 02: 03: import vicazh.hyperpool.stream.net.http.Session; 04: 05: class FtpConnection extends Connection { 06: FtpConnection(Service service) { 07: super (service); 08: } 09: 10: protected Session getSession() { 11: return new FtpSession(this); 12: } 13: 14: }