01: package vicazh.hyperpool;
02:
03: import javax.xml.transform.*;
04:
05: /**
06: * The communicator interface
07: *
08: * @author Victor Zhigunov
09: * @version 0.4.0
10: */
11: public interface ComMBean extends ElementMBean {
12: static final String SET = "set";
13: static final String READ = "read";
14: static final String REMOVE = "remove";
15: static final String CHANGED = "changed";
16: static final String UP = "up";
17: static final String DOWN = "down";
18:
19: /**
20: * Get bytes
21: *
22: * @return bytes
23: */
24: byte[] get() throws TransformerException;
25: }
|