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