| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object | +--javax.management.MBeanInfo
Describes the management interface exposed by an MBean; that is, the set of attributes and operations which are available for management operations.
| Constructor Summary | |
| MBeanInfo(java.lang.String className,
          java.lang.String description,
          MBeanAttributeInfo[] attributes,
          MBeanConstructorInfo[] constructors,
          MBeanOperationInfo[] operations,
          MBeanNotificationInfo[] notifications)Constructs an MBeanInfo. | |
| Method Summary | |
|  java.lang.Object | clone()Creates and returns a copy of this object. | 
|  MBeanAttributeInfo[] | getAttributes()Returns the list of attributes exposed for management. | 
|  java.lang.String | getClassName()Returns the name of the Java class of the MBean described by this MBeanInfo. | 
|  MBeanConstructorInfo[] | getConstructors()Returns the list of the public constructors of the MBean. | 
|  java.lang.String | getDescription()Returns a human readable description of the MBean. | 
|  MBeanNotificationInfo[] | getNotifications()Returns the list of the notifications emitted by the MBean. | 
|  MBeanOperationInfo[] | getOperations()Returns the list of operations of the MBean. | 
| Methods inherited from class java.lang.Object | 
| equals, 
finalize, 
getClass, 
hashCode, 
notify, 
notifyAll, 
toString, 
wait, 
wait, 
wait | 
| Constructor Detail | 
public MBeanInfo(java.lang.String className,
                 java.lang.String description,
                 MBeanAttributeInfo[] attributes,
                 MBeanConstructorInfo[] constructors,
                 MBeanOperationInfo[] operations,
                 MBeanNotificationInfo[] notifications)
className - The name of the Java class of the MBean described by this
                   MBeanInfo.description - A human readable description of the MBean (optional).attributes - The list of exposed attributes of the MBean.constructors - The list of public constructors of the MBean.operations - The list of operations of the MBean.notifications - The list of notifications emitted by an MBean.| Method Detail | 
public java.lang.String getClassName()
public MBeanNotificationInfo[] getNotifications()
public MBeanAttributeInfo[] getAttributes()
public MBeanConstructorInfo[] getConstructors()
public MBeanOperationInfo[] getOperations()
public java.lang.String getDescription()
public java.lang.Object clone()
| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||