Uses of Class
javax.management.RuntimeOperationsException

Packages that use RuntimeOperationsException
javax.management   
javax.management.modelmbean   
 

Uses of RuntimeOperationsException in javax.management
 

Methods in javax.management that throw RuntimeOperationsException
 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.
 java.lang.Object Descriptor.getFieldValue(java.lang.String fieldName)
          Returns the value for a specific fieldname.
 void Descriptor.setField(java.lang.String fieldName, java.lang.Object fieldValue)
          Sets the value for a specific fieldname.
 void Descriptor.setFields(java.lang.String[] fieldNames, java.lang.Object[] fieldValues)
          Sets all Fields in the list to the new value in with the same index in the fieldValue array.
 java.lang.Object Descriptor.clone()
          Returns a new Descriptor which is a duplicate of the Descriptor.
 boolean Descriptor.isValid()
          Returns true if fieldValues are checked to be sure they are legal for the fieldNames.
 

Uses of RuntimeOperationsException in javax.management.modelmbean
 

Methods in javax.management.modelmbean that throw RuntimeOperationsException
 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()
           
 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)
 java.lang.Object DescriptorSupport.getFieldValue(java.lang.String fieldName)
          returns the string value for a specific fieldname
 void DescriptorSupport.setField(java.lang.String fieldName, java.lang.Object fieldValue)
          Sets the string value for a specific fieldname.
 void DescriptorSupport.setFields(java.lang.String[] fieldNames, java.lang.Object[] fieldValues)
          Sets all Fields in the list to the new value in with the same index in the fieldValue array.
 java.lang.Object DescriptorSupport.clone()
          Returns a new Descriptor which is a duplicate of the Descriptor.
 boolean DescriptorSupport.isValid()
          Returns true if fieldValues are checked to be sure they are legal for the fieldNames.
 

Constructors in javax.management.modelmbean that throw RuntimeOperationsException
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.
DescriptorSupport(java.lang.String[] fieldNames, java.lang.Object[] fieldValues)
          Constructor taking field names and field values.