01: package vicazh.hyperpool;
02:
03: /**
04: * The interface for all services and selector
05: *
06: * @author Victor Zhigunov
07: * @version 0.4.0
08: */
09: public interface ElementMBean {
10: static final String INIT = "init";
11:
12: /**
13: * Set attribute
14: */
15: void setAttribute(String name, long sourceID, Object value)
16: throws Exception;
17: }
|