01: package vicazh.hyperpool.stream.net.http.html;
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: * @param name
15: * service name
16: */
17: public ISwitchService(String name) {
18: super (SwitchServiceMBean.class, name);
19: }
20: }
|