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