01: package vicazh.hyperpool.stream.net.socks;
02:
03: import vicazh.hyperpool.*;
04:
05: /**
06: * The graphic switch
07: *
08: * @author Victor Zhigunov
09: * @version 0.4.0
10: */
11: public class ISwitchService extends IService implements
12: SwitchServiceMBean {
13:
14: /**
15: * @param name
16: * service name
17: */
18: public ISwitchService(String name) {
19: super (SwitchServiceMBean.class, name);
20: }
21: }
|