|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RuntimeOperationsException | |
javax.management | Provides the core JMX classes. |
javax.management.modelmbean | Provides the definition of the ModelMBean classes. |
Uses of RuntimeOperationsException in javax.management |
Methods in javax.management that throw RuntimeOperationsException | |
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 all of the fields have legal values given their names. |
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 MBean instance and writes it out to the persistent store. |
Uses of RuntimeOperationsException in javax.management.modelmbean |
Methods in javax.management.modelmbean that throw RuntimeOperationsException | |
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 inFieldName)
Returns the value for a specific fieldname. |
void |
DescriptorSupport.setField(java.lang.String inFieldName,
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 all of the fields have legal values given their names. |
void |
ModelMBeanNotificationBroadcaster.sendNotification(Notification ntfyObj)
Sends a Notification which is passed in to the registered Notification listeners on the ModelMBean as a jmx.modelmbean.generic notification. |
void |
ModelMBeanNotificationBroadcaster.sendNotification(java.lang.String ntfyText)
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. |
void |
ModelMBeanNotificationBroadcaster.removeAttributeChangeNotificationListener(NotificationListener listener,
java.lang.String attributeName)
Removes a listener for attributeChangeNotifications from the RequiredModelMBean. |
Descriptor[] |
ModelMBeanInfoSupport.getDescriptors(java.lang.String inDescriptorType)
|
void |
ModelMBeanInfoSupport.setDescriptors(Descriptor[] inDescriptors)
|
Descriptor |
ModelMBeanInfoSupport.getDescriptor(java.lang.String inDescriptorName)
Returns a Descriptor requested by name. |
Descriptor |
ModelMBeanInfoSupport.getDescriptor(java.lang.String inDescriptorName,
java.lang.String inDescriptorType)
|
void |
ModelMBeanInfoSupport.setDescriptor(Descriptor inDescriptor,
java.lang.String inDescriptorType)
|
ModelMBeanAttributeInfo |
ModelMBeanInfoSupport.getAttribute(java.lang.String inName)
|
ModelMBeanOperationInfo |
ModelMBeanInfoSupport.getOperation(java.lang.String inName)
|
ModelMBeanConstructorInfo |
ModelMBeanInfoSupport.getConstructor(java.lang.String inName)
Returns the ModelMBeanConstructorInfo requested by name. |
ModelMBeanNotificationInfo |
ModelMBeanInfoSupport.getNotification(java.lang.String inName)
|
Descriptor |
ModelMBeanInfoSupport.getMBeanDescriptor()
|
void |
ModelMBeanInfoSupport.setMBeanDescriptor(Descriptor inMBeanDescriptor)
|
Descriptor[] |
ModelMBeanInfo.getDescriptors(java.lang.String inDescriptorType)
Returns a Descriptor array consisting of all Descriptors for the ModelMBeanInfo of type inDescriptorType. |
void |
ModelMBeanInfo.setDescriptors(Descriptor[] inDescriptors)
Adds or replaces descriptors in the ModelMBeanInfo. |
Descriptor |
ModelMBeanInfo.getDescriptor(java.lang.String inDescriptorName,
java.lang.String inDescriptorType)
Returns a Descriptor requested by name and descriptorType. |
void |
ModelMBeanInfo.setDescriptor(Descriptor inDescriptor,
java.lang.String inDescriptorType)
Sets descriptors in the info array of type inDescriptorType for the ModelMBean. |
Descriptor |
ModelMBeanInfo.getMBeanDescriptor()
Returns the ModelMBean's descriptor which contains MBean wide policies. |
void |
ModelMBeanInfo.setMBeanDescriptor(Descriptor inDescriptor)
Sets the ModelMBean's descriptor. |
ModelMBeanAttributeInfo |
ModelMBeanInfo.getAttribute(java.lang.String inName)
Returns a ModelMBeanAttributeInfo requested by name. |
ModelMBeanOperationInfo |
ModelMBeanInfo.getOperation(java.lang.String inName)
Returns a ModelMBeanOperationInfo requested by name. |
ModelMBeanNotificationInfo |
ModelMBeanInfo.getNotification(java.lang.String inName)
Returns a ModelMBeanNotificationInfo requested by name. |
void |
RequiredModelMBean.setModelMBeanInfo(ModelMBeanInfo mbi)
Initializes a ModelMBean object using ModelMBeanInfo passed in. |
void |
RequiredModelMBean.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). |
void |
RequiredModelMBean.load()
Persistence is not supported by the this Model MBean implementation. |
void |
RequiredModelMBean.store()
Persistence is not supported by the this Model MBean implementation. |
void |
RequiredModelMBean.sendNotification(Notification ntfyObj)
|
void |
RequiredModelMBean.sendNotification(java.lang.String ntfyText)
|
void |
RequiredModelMBean.addAttributeChangeNotificationListener(NotificationListener inlistener,
java.lang.String inAttributeName,
java.lang.Object inhandback)
|
void |
RequiredModelMBean.removeAttributeChangeNotificationListener(NotificationListener inlistener,
java.lang.String inAttributeName)
|
void |
RequiredModelMBean.sendAttributeChangeNotification(AttributeChangeNotification ntfyObj)
|
void |
RequiredModelMBean.sendAttributeChangeNotification(Attribute inOldVal,
Attribute inNewVal)
|
Constructors in javax.management.modelmbean that throw RuntimeOperationsException | |
DescriptorSupport(int initNumFields)
Descriptor constructor. |
|
DescriptorSupport(java.lang.String inStr)
Descriptor constructor taking an XML String. |
|
DescriptorSupport(java.lang.String[] fieldNames,
java.lang.Object[] fieldValues)
Constructor taking field names and field values. |
|
RequiredModelMBean()
Constructs an RequiredModelMBean with an empty
ModelMBeanInfo. |
|
RequiredModelMBean(ModelMBeanInfo mbi)
Constructs a RequiredModelMBean object using ModelMBeanInfo passed in. |
|
Maintenance Release jmx-1.2.1-b14 2003.07.15_17:22:05_MEST |
||||||||||
PREV NEXT | FRAMES NO FRAMES |