01: package vicazh.hyperpool.stream.net.http;
02:
03: /**
04: * The content selector
05: *
06: * @author Victor Zhigunov
07: * @version 0.4.0
08: */
09: public class ContentSelector extends ControlListSelector implements
10: ContentSelectorMBean {
11: public Connection getConnection() {
12: return new ContentConnection(this);
13: }
14: }
|