* @return the MBeanInfo of the MBean
*/
private MBeanInfo createMBeanInfo()
{
MBeanAttributeInfo attrs[] = createMBeanAttributeInfo();
MBeanConstructorInfo ctors[] = createMBeanConstructorInfo();
MBeanOperationInfo opers[] = createMBeanOperationInfo();
MBeanNotificationInfo notifs[] = createMBeanNotificationInfo();
String className = getMBeanClassName();
String description = getMBeanDescription();
return new MBeanInfo(className, description, attrs, ctors, opers, notifs);