01: package vicazh.hyperpool;
02:
03: /**
04: * The interface for all service elements
05: *
06: * @author Victor Zhigunov
07: * @version 0.4.0
08: */
09: public interface ServiceMBean extends ElementMBean {
10: /**
11: * Set the linked element
12: */
13: void setElement(ElementMBean element);
14:
15: /**
16: * Get the linked element
17: */
18: ElementMBean getElement();
19: }
|