Uses of Class
javax.management.MBeanException

Packages that use MBeanException
javax.management   
javax.management.modelmbean   
org.huihoo.jfox.jmx   
org.huihoo.jfox.jmx.loading   
 

Uses of MBeanException in javax.management
 

Subclasses of MBeanException in javax.management
 class MBeanRegistrationException
          Wraps exceptions thrown by the preRegister(), preDeregister() methods of the MBeanRegistration interface.
 

Methods in javax.management that throw MBeanException
 java.lang.Object StandardMBean.getAttribute(java.lang.String attribute)
           
 void StandardMBean.setAttribute(Attribute attribute)
           
 java.lang.Object StandardMBean.invoke(java.lang.String actionName, java.lang.Object[] params, java.lang.String[] signature)
           
 void PersistentMBean.load()
          Instantiates thisMBean instance with the data found for the MBean in the persistent store.
 void PersistentMBean.store()
          Captures the current state of this MMBean instance and writes it out to the persistent store.
 ObjectInstance MBeanServerConnection.createMBean(java.lang.String className, ObjectName name)
          Instantiates and registers an MBean in the MBean server.
 ObjectInstance MBeanServerConnection.createMBean(java.lang.String className, ObjectName name, ObjectName loaderName)
          Instantiates and registers an MBean in the MBean server.
 ObjectInstance MBeanServerConnection.createMBean(java.lang.String className, ObjectName name, java.lang.Object[] params, java.lang.String[] signature)
          Instantiates and registers an MBean in the MBean server.
 ObjectInstance MBeanServerConnection.createMBean(java.lang.String className, ObjectName name, ObjectName loaderName, java.lang.Object[] params, java.lang.String[] signature)
          Instantiates and registers an MBean in the MBean server.
 java.lang.Object MBeanServerConnection.getAttribute(ObjectName name, java.lang.String attribute)
          Gets the value of a specific attribute of a named MBean.
 void MBeanServerConnection.setAttribute(ObjectName name, Attribute attribute)
          Sets the value of a specific attribute of a named MBean.
 java.lang.Object MBeanServerConnection.invoke(ObjectName name, java.lang.String operationName, java.lang.Object[] params, java.lang.String[] signature)
          Invokes an operation on an MBean.
 java.lang.Object MBeanServer.instantiate(java.lang.String className)
          Instantiates an object using the list of all class loaders registered The MBean server will use the javax.management.MBeanServerFactory.getClassLoaderRepository(MBeanServer server) Default Loader Repository The object's class should have a public constructor.
 java.lang.Object MBeanServer.instantiate(java.lang.String className, ObjectName loaderName)
          Instantiates an object using the class Loader specified by its ObjectName.
 java.lang.Object MBeanServer.instantiate(java.lang.String className, java.lang.Object[] params, java.lang.String[] signature)
          Instantiates an object using the list of all class loaders registered The MBean server will use the javax.management.MBeanServerFactory.getClassLoaderRepository(MBeanServer server) Default Loader Repository The object's class should have a public constructor.
 java.lang.Object MBeanServer.instantiate(java.lang.String className, ObjectName loaderName, java.lang.Object[] params, java.lang.String[] signature)
          Instantiates an object.
 ObjectInstance MBeanServer.createMBean(java.lang.String className, ObjectName name)
          Instantiates and registers an MBean in the MBean server.
 ObjectInstance MBeanServer.createMBean(java.lang.String className, ObjectName name, ObjectName loaderName)
          Instantiates and registers an MBean in the MBean server.
 ObjectInstance MBeanServer.createMBean(java.lang.String className, ObjectName name, java.lang.Object[] params, java.lang.String[] signature)
          Instantiates and registers an MBean in the MBean server.
 ObjectInstance MBeanServer.createMBean(java.lang.String className, ObjectName name, ObjectName loaderName, java.lang.Object[] params, java.lang.String[] signature)
          Instantiates and registers an MBean in the MBean server.
 java.lang.Object MBeanServer.getAttribute(ObjectName name, java.lang.String attribute)
          Gets the value of a specific attribute of a named MBean.
 void MBeanServer.setAttribute(ObjectName name, Attribute attribute)
          Sets the value of a specific attribute of a named MBean.
 java.lang.Object MBeanServer.invoke(ObjectName name, java.lang.String operationName, java.lang.Object[] params, java.lang.String[] signature)
          Invokes an operation on an MBean.
 java.lang.Object DynamicMBean.getAttribute(java.lang.String attribute)
          Obtains the value of a specific attribute of the Dynamic MBean.
 void DynamicMBean.setAttribute(Attribute attribute)
          Sets the value of a specific attribute of the Dynamic MBean
 java.lang.Object DynamicMBean.invoke(java.lang.String actionName, java.lang.Object[] params, java.lang.String[] signature)
          Allows an action to be invoked on the Dynamic MBean.
 

Uses of MBeanException in javax.management.modelmbean
 

Methods in javax.management.modelmbean that throw MBeanException
 void RequiredModelMBean.setModelMBeanInfo(ModelMBeanInfo mbeanInfo)
          Initializes a RequiredModelMBean object using ModelMBeanInfo passed in.
 void RequiredModelMBean.setManagedResource(java.lang.Object resource, java.lang.String type)
          Sets the instance handle of the object against which to execute all methods in this RequiredModelMBean management interface (ModelMBeanInfo and Descriptors).
 void RequiredModelMBean.load()
          load a modelMBean from a serialized file, if the ModelMBean is initliazing, use it's ClassName + ".ser" as it's filename, or will look for the MBeanDescriptor
 void RequiredModelMBean.store()
           
 java.lang.Object RequiredModelMBean.invoke(java.lang.String operationName, java.lang.Object[] params, java.lang.String[] signature)
          Invokes a method on or through a RequiredModelMBean and returns the result of the method execution.
 java.lang.Object RequiredModelMBean.getAttribute(java.lang.String attributeName)
          Returns the value of a specific attribute defined for this ModelMBean.
 void RequiredModelMBean.setAttribute(Attribute attribute)
          Sets the value of a specific attribute of a named ModelMBean.
 void RequiredModelMBean.sendNotification(Notification notification)
          Sends a Notification which is passed in to the registered Notification listeners on the RequiredModelMBean.
 void RequiredModelMBean.sendNotification(java.lang.String message)
          Sends a Notification which contains the text string that is passed in to the registered Notification listeners on the ModelMBean.
 void RequiredModelMBean.addAttributeChangeNotificationListener(NotificationListener listener, java.lang.String attributeName, java.lang.Object handback)
          Registers an object which implements the NotificationListener interface as a listener.
 void RequiredModelMBean.removeAttributeChangeNotificationListener(NotificationListener listener, java.lang.String attributeName)
          Removes a listener for attributeChangeNotifications from the RequiredModelMBean.
 void RequiredModelMBean.sendAttributeChangeNotification(AttributeChangeNotification notification)
          Sends an attributeChangeNotification which is passed in to the registered attributeChangeNotification listeners on the ModelMBean.
 void RequiredModelMBean.sendAttributeChangeNotification(Attribute oldAttribute, Attribute newAttribute)
          Sends an attributeChangeNotification which contains the old value and new value for the attribute to the registered AttributeChangeNotification listeners on the RequiredModelMBean.
 void ModelMBeanNotificationBroadcaster.sendNotification(Notification notification)
          Sends a Notification which is passed in to the registered Notification listeners on the ModelMBean as a jmx.modelmbean.general notification.
 void ModelMBeanNotificationBroadcaster.sendNotification(java.lang.String message)
          Sends a Notification which contains the text string that is passed in to the registered Notification listeners on the ModelMBean.
 void ModelMBeanNotificationBroadcaster.sendAttributeChangeNotification(AttributeChangeNotification notification)
          Sends an attributeChangeNotification which is passed in to the registered attributeChangeNotification listeners on the ModelMBean.
 void ModelMBeanNotificationBroadcaster.sendAttributeChangeNotification(Attribute oldValue, Attribute newValue)
          Sends an attributeChangeNotification which contains the old value and new value for the attribute to the registered AttributeChangeNotification listeners on the ModelMBean.
 void ModelMBeanNotificationBroadcaster.addAttributeChangeNotificationListener(NotificationListener listener, java.lang.String attributeName, java.lang.Object handback)
          Registers an object which implements the NotificationListener interface as a listener for AttributeChangeNotifications.
 void ModelMBeanNotificationBroadcaster.removeAttributeChangeNotificationListener(NotificationListener listener, java.lang.String attributeName)
          Removes a listener for attributeChangeNotifications from the MBean.
 Descriptor[] ModelMBeanInfoSupport.getDescriptors(java.lang.String descriptionType)
          Returns a DescriptorList.
 void ModelMBeanInfoSupport.setDescriptors(Descriptor[] descriptors)
          Adds or replaces descriptors in all the ModelMBeanInfoSupport for the ModelMBean.
 Descriptor ModelMBeanInfoSupport.getDescriptor(java.lang.String descriptorName)
          Returns a Descriptor requested by name
 Descriptor ModelMBeanInfoSupport.getDescriptor(java.lang.String descriptorName, java.lang.String descriptorType)
          Returns a Descriptor requested by name and descriptorType.
 void ModelMBeanInfoSupport.setDescriptor(Descriptor descriptor, java.lang.String descriptorType)
          Adds or replaces a descriptor in the ModelMBeanInfoSupport.
 ModelMBeanAttributeInfo ModelMBeanInfoSupport.getAttribute(java.lang.String name)
          Returns a ModelMBeanAttributeInfo requested by name.
 ModelMBeanOperationInfo ModelMBeanInfoSupport.getOperation(java.lang.String name)
          Returns a ModelMBeanOperationInfo requested by name.
 ModelMBeanConstructorInfo ModelMBeanInfoSupport.getConstructor(java.lang.String name)
          Returns a ModelMBeanConstructorInfo requested by name.
 ModelMBeanNotificationInfo ModelMBeanInfoSupport.getNotification(java.lang.String name)
          Returns a ModelMBeanNotificationInfo requested by name.
 Descriptor ModelMBeanInfoSupport.getMBeanDescriptor()
          Returns the ModelMBean's descriptor which contains mbean wide policies.
 void ModelMBeanInfoSupport.setMBeanDescriptor(Descriptor descriptor)
          Sets the ModelMBean's descriptor.
 Descriptor[] ModelMBeanInfo.getDescriptors(java.lang.String inDescriptorType)
          returns a Descriptor array consisting of all Descriptors for the ModelMBeanInfo including the MBean Descriptor, attribute Descriptors, operation Descriptors, constructor Descriptors, and notification Descriptors.
 void ModelMBeanInfo.setDescriptors(Descriptor[] inDescriptors)
          adds or replaces descriptors in the ModelMBeanInfo.
 Descriptor ModelMBeanInfo.getDescriptor(java.lang.String descriptorName, java.lang.String descriptorType)
          returns a Descriptor requested by name and descriptorType.
 void ModelMBeanInfo.setDescriptor(Descriptor descriptor, java.lang.String descriptorType)
          adds or replaces descriptors in all the info arrays for the ModelMBean.
 Descriptor ModelMBeanInfo.getMBeanDescriptor()
          returns a MBean's descriptor.
 void ModelMBeanInfo.setMBeanDescriptor(Descriptor inDescriptor)
          sets the ModelMBean's descriptor (fully replace).
 ModelMBeanAttributeInfo ModelMBeanInfo.getAttribute(java.lang.String name)
          returns a ModelMBeanAttributeInfo requested by name.
 ModelMBeanOperationInfo ModelMBeanInfo.getOperation(java.lang.String name)
          returns a ModelMBeanOperationInfo requested by name.
 ModelMBeanNotificationInfo ModelMBeanInfo.getNotification(java.lang.String name)
          returns a ModelMBeanNotificationInfo requested by name.
 void ModelMBean.setModelMBeanInfo(ModelMBeanInfo inModelMBeanInfo)
          Initializes a ModelMBean object using ModelMBeanInfo passed in.
 void ModelMBean.setManagedResource(java.lang.Object mr, java.lang.String mr_type)
          Sets the instance handle of the object against which to execute all methods in this ModelMBean management interface (MBeanInfo and Descriptors)
 

Constructors in javax.management.modelmbean that throw MBeanException
RequiredModelMBean()
          Constructs an RequiredModelMBean with an empty ModelMBeanInfo.
RequiredModelMBean(ModelMBeanInfo mbeanInfo)
          Constructs a RequiredModelMBean object using ModelMBeanInfo passed in.
DescriptorSupport(int initNumFields)
          Descriptor constructor.
DescriptorSupport(java.lang.String xmlString)
          Descriptor constructor taking an XML String.
 

Uses of MBeanException in org.huihoo.jfox.jmx
 

Methods in org.huihoo.jfox.jmx that throw MBeanException
 java.lang.Object MBeanServerSupport.instantiate(java.lang.String className)
           
 java.lang.Object MBeanServerSupport.instantiate(java.lang.String className, ObjectName loaderName)
           
 java.lang.Object MBeanServerSupport.instantiate(java.lang.String className, java.lang.Object[] params, java.lang.String[] signatures)
           
 java.lang.Object MBeanServerSupport.instantiate(java.lang.String className, ObjectName loaderName, java.lang.Object[] params, java.lang.String[] signatures)
           
 ObjectInstance MBeanServerSupport.createMBean(java.lang.String className, ObjectName objectName)
           
 ObjectInstance MBeanServerSupport.createMBean(java.lang.String className, ObjectName objectName, ObjectName loaderName)
           
 ObjectInstance MBeanServerSupport.createMBean(java.lang.String className, ObjectName objectName, java.lang.Object[] params, java.lang.String[] signatures)
           
 ObjectInstance MBeanServerSupport.createMBean(java.lang.String className, ObjectName objectName, ObjectName loaderName, java.lang.Object[] params, java.lang.String[] signatures)
           
 java.lang.Object MBeanServerSupport.getAttribute(ObjectName objectName, java.lang.String attribute)
           
 void MBeanServerSupport.setAttribute(ObjectName objectName, Attribute attribute)
           
 java.lang.Object MBeanServerSupport.invoke(ObjectName objectName, java.lang.String operationName, java.lang.Object[] params, java.lang.String[] signatures)
           
 java.lang.Object MBeanMetaDataSupport.getAttribute(java.lang.String attribute)
           
 AttributeList MBeanMetaDataSupport.getAttributes(java.lang.String[] attributes)
           
 void MBeanMetaDataSupport.setAttribute(Attribute attribute)
           
 AttributeList MBeanMetaDataSupport.setAttributes(AttributeList attributes)
           
 java.lang.Object MBeanMetaDataSupport.invoke(java.lang.String operationName, java.lang.Object[] params, java.lang.String[] signatures)
           
 java.lang.Object MBeanMetaData.getAttribute(java.lang.String attribute)
           
 AttributeList MBeanMetaData.getAttributes(java.lang.String[] attributes)
           
 void MBeanMetaData.setAttribute(Attribute attribute)
           
 AttributeList MBeanMetaData.setAttributes(AttributeList attributes)
           
 java.lang.Object MBeanMetaData.invoke(java.lang.String operationName, java.lang.Object[] params, java.lang.String[] signatures)
           
 java.lang.Object MBeanInstantiatorSupport.instantiate(java.lang.Class mbeanClass)
           
 java.lang.Object MBeanInstantiatorSupport.instantiate(java.lang.Class mbeanClass, java.lang.Object[] params, java.lang.String[] signatures)
           
 java.lang.Object MBeanInstantiator.instantiate(java.lang.Class mbeanClass)
           
 java.lang.Object MBeanInstantiator.instantiate(java.lang.Class mbeanClass, java.lang.Object[] params, java.lang.String[] signatures)
           
 java.lang.Object DynamicMBeanMetaDataSupport.getAttribute(java.lang.String attribute)
           
 AttributeList DynamicMBeanMetaDataSupport.getAttributes(java.lang.String[] attributes)
           
 void DynamicMBeanMetaDataSupport.setAttribute(Attribute attribute)
           
 AttributeList DynamicMBeanMetaDataSupport.setAttributes(AttributeList attributes)
           
 java.lang.Object DynamicMBeanMetaDataSupport.invoke(java.lang.String operationName, java.lang.Object[] params, java.lang.String[] signatures)
           
 

Uses of MBeanException in org.huihoo.jfox.jmx.loading
 

Methods in org.huihoo.jfox.jmx.loading that throw MBeanException
 java.util.Iterator MLetParser.parse(java.net.URL url)