KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > management > MBeanServerDelegateMBean


1 /*
2  * @(#)MBeanServerDelegateMBean.java 4.18 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package javax.management;
9
10
11 /**
12  * Defines the management interface of an object of class MBeanServerDelegate.
13  *
14  * @since 1.5
15  */

16 public interface MBeanServerDelegateMBean {
17
18     /**
19      * Returns the MBean server agent identity.
20      *
21      * @return the agent identity.
22      */

23     public String JavaDoc getMBeanServerId();
24
25     /**
26      * Returns the full name of the JMX specification implemented
27      * by this product.
28      *
29      * @return the specification name.
30      */

31     public String JavaDoc getSpecificationName();
32
33     /**
34      * Returns the version of the JMX specification implemented
35      * by this product.
36      *
37      * @return the specification version.
38      */

39     public String JavaDoc getSpecificationVersion();
40
41     /**
42      * Returns the vendor of the JMX specification implemented
43      * by this product.
44      *
45      * @return the specification vendor.
46      */

47     public String JavaDoc getSpecificationVendor();
48
49     /**
50      * Returns the JMX implementation name (the name of this product).
51      *
52      * @return the implementation name.
53      */

54     public String JavaDoc getImplementationName();
55
56     /**
57      * Returns the JMX implementation version (the version of this product).
58      *
59      * @return the implementation version.
60      */

61     public String JavaDoc getImplementationVersion();
62
63     /**
64      * Returns the JMX implementation vendor (the vendor of this product).
65      *
66      * @return the implementation vendor.
67      */

68     public String JavaDoc getImplementationVendor();
69
70 }
71
Popular Tags