01: package vicazh.hyperpool.stream.net.http;
02:
03: /**
04: * The reset route service
05: *
06: * @author Victor Zhigunov
07: * @version 0.4.0
08: */
09: public class ResetRouteService extends Service implements
10: ResetRouteServiceMBean {
11:
12: public Connection getConnection() {
13: return new ResetRouteConnection(this);
14: }
15: }
|