| java.lang.Object javax.management.MBeanInfo
MBeanInfo | public class MBeanInfo implements Serializable,Cloneable(Code) | | Allows to discover the management interface exposed by an MBean; that is, the
set of attributes and operations which are available for management operations.
|
MBeanInfo | protected MBeanInfo()(Code) | | Default constructor for constructing an MBeanInfo.
|
MBeanInfo | public MBeanInfo(String className, String description, MBeanAttributeInfo[] attributes, MBeanConstructorInfo[] constructors, MBeanOperationInfo[] operations, MBeanNotificationInfo[] notifications)(Code) | | Constructs an MBeanInfo .
Parameters: name - The name of the Java class of the MBean describedby 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. |
clone | public Object clone()(Code) | | Creates and returns a copy of this object.
A duplicate copy of this object is created |
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 MBean Java class name described by this MBeanInfo.
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.
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. |
|
|