KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > compliance > core > notification > InvokerTestMBean


1 package test.compliance.core.notification;
2
3 import org.w3c.dom.Element JavaDoc;
4
5 /**
6  * @author <a HREF="mailto:telrod@e2technologies.net">Tom Elrod</a>
7  */

8 public interface InvokerTestMBean
9 {
10    /**
11     * @jmx:managed-attribute
12     */

13    String JavaDoc getSomething();
14
15    /**
16     * @jmx:managed-attribute
17     */

18    CustomClass getCustom();
19
20    /**
21     * @jmx:managed-attribute
22     */

23    void setCustom(CustomClass custom);
24
25    /**
26     * @jmx:managed-attribute
27     */

28    NonserializableClass getNonserializableClass();
29
30    /**
31     * @jmx:managed-attribute
32     */

33    void setNonserializableClass(NonserializableClass custom);
34
35    /**
36     * @jmx:managed-attribute
37     */

38    Element JavaDoc getXml();
39
40    /**
41     * @jmx:managed-attribute
42     */

43    void setXml(Element JavaDoc xml);
44
45    /**
46     * @jmx:managed-operation
47     */

48    CustomClass doSomething(CustomClass custom);
49
50    /**
51     * @jmx:managed-operation
52     */

53    CustomClass doSomething();
54
55    /**
56     * @jmx:managed-operation
57     */

58    void stop();
59 }
60
Popular Tags