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