01: package vicazh.hyperpool.stream.net.http;
02:
03: /**
04: * This class is the superclass of all http report services
05: *
06: * @author Victor Zhigunov
07: * @version 0.4.0
08: */
09: abstract public class ReportService extends
10: vicazh.hyperpool.stream.net.ReportService {
11: public ReportService() {
12: }
13:
14: /**
15: * @param cachesize
16: * cache size
17: */
18: public ReportService(int cachesize) {
19: super (cachesize);
20: }
21:
22: public vicazh.hyperpool.stream.Connection getConnection() {
23: return new Connection(this);
24: }
25: }
|