01: package vicazh.hyperpool.stream.net.http;
02:
03: /**
04: * This class is the superclass of all http services
05: *
06: * @author Victor Zhigunov
07: * @version 0.3.0
08: */
09: public class Service extends vicazh.hyperpool.stream.net.Service {
10: public vicazh.hyperpool.stream.Connection getConnection() {
11: return new Connection(this);
12: }
13: }
|