| java.lang.Object javax.management.MBeanInfo
MBeanInfo | public MBeanInfo(String className, String description, MBeanAttributeInfo[] attributes, MBeanConstructorInfo[] constructors, MBeanOperationInfo[] operations, MBeanNotificationInfo[] notifications)(Code) | | Constructs an MBeanInfo .
Parameters: className - The name of the Java class of the MBean described by this MBeanInfo . Parameters: description - A human readable description of the MBean (optional). Parameters: attributes - The list of exposed attributes of the MBean. Parameters: constructors - The list of public constructors of the MBean. Parameters: operations - The list of operations of the MBean. Parameters: notifications - The list of notifications emitted by an MBean. |
getAttributes | public MBeanAttributeInfo[] getAttributes()(Code) | | Returns the list of attributes exposed for management.
Each attribute is described by an MBeanAttributeInfo object.
An array of MBeanAttributeInfo objects. |
getClassName | public String getClassName()(Code) | | Returns the name of the Java class of the MBean described by
this MBeanInfo .
|
getConstructors | public MBeanConstructorInfo[] getConstructors()(Code) | | Returns the list of the public constructors of the MBean.
Each constructor is described by an MBeanConstructorInfo object.
An array of MBeanConstructorInfo objects. |
getDescription | public String getDescription()(Code) | | Returns a human readable description of the MBean.
|
getNotifications | public MBeanNotificationInfo[] getNotifications()(Code) | | Returns the list of the notifications emitted by the MBean.
Each notification is described by an MBeanNotificationInfo object.
An array of MBeanNotificationInfo objects. |
getOperations | public MBeanOperationInfo[] getOperations()(Code) | | Returns the list of operations of the MBean.
Each operation is described by an MBeanOperationInfo object.
An array of MBeanOperationInfo objects. |
|
|