Uses of Class
javax.management.MBeanException
-
Packages that use MBeanException Package Description javax.management Provides the core classes for the Java Management Extensions.javax.management.modelmbean Provides the definition of the ModelMBean classes.javax.management.remote.rmi The RMI connector is a connector for the JMX Remote API that uses RMI to transmit client requests to a remote MBean server. -
-
Uses of MBeanException in javax.management
Subclasses of MBeanException in javax.management Modifier and Type Class Description class
MBeanRegistrationException
Wraps exceptions thrown by the preRegister(), preDeregister() methods of theMBeanRegistration
interface.Methods in javax.management that throw MBeanException Modifier and Type Method Description ObjectInstance
MBeanServer. createMBean(String className, ObjectName name)
Instantiates and registers an MBean in the MBean server.ObjectInstance
MBeanServer. createMBean(String className, ObjectName name, Object[] params, String[] signature)
Instantiates and registers an MBean in the MBean server.ObjectInstance
MBeanServer. createMBean(String className, ObjectName name, ObjectName loaderName)
Instantiates and registers an MBean in the MBean server.ObjectInstance
MBeanServer. createMBean(String className, ObjectName name, ObjectName loaderName, Object[] params, String[] signature)
Instantiates and registers an MBean in the MBean server.ObjectInstance
MBeanServerConnection. createMBean(String className, ObjectName name)
Instantiates and registers an MBean in the MBean server.ObjectInstance
MBeanServerConnection. createMBean(String className, ObjectName name, Object[] params, String[] signature)
Instantiates and registers an MBean in the MBean server.ObjectInstance
MBeanServerConnection. createMBean(String className, ObjectName name, ObjectName loaderName)
Instantiates and registers an MBean in the MBean server.ObjectInstance
MBeanServerConnection. createMBean(String className, ObjectName name, ObjectName loaderName, Object[] params, String[] signature)
Instantiates and registers an MBean in the MBean server.Object
DynamicMBean. getAttribute(String attribute)
Obtain the value of a specific attribute of the Dynamic MBean.Object
MBeanServer. getAttribute(ObjectName name, String attribute)
Object
MBeanServerConnection. getAttribute(ObjectName name, String attribute)
Gets the value of a specific attribute of a named MBean.Object
StandardMBean. getAttribute(String attribute)
Object
MBeanServer. instantiate(String className)
Instantiates an object using the list of all class loaders registered in the MBean server'sClass Loader Repository
.Object
MBeanServer. instantiate(String className, Object[] params, String[] signature)
Instantiates an object using the list of all class loaders registered in the MBean serverClass Loader Repository
.Object
MBeanServer. instantiate(String className, ObjectName loaderName)
Instantiates an object using the class Loader specified by itsObjectName
.Object
MBeanServer. instantiate(String className, ObjectName loaderName, Object[] params, String[] signature)
Instantiates an object.Object
DynamicMBean. invoke(String actionName, Object[] params, String[] signature)
Allows an action to be invoked on the Dynamic MBean.Object
MBeanServer. invoke(ObjectName name, String operationName, Object[] params, String[] signature)
Object
MBeanServerConnection. invoke(ObjectName name, String operationName, Object[] params, String[] signature)
Invokes an operation on an MBean.Object
StandardMBean. invoke(String actionName, Object[] params, String[] signature)
void
PersistentMBean. load()
Instantiates thisMBean instance with the data found for the MBean in the persistent store.void
DynamicMBean. setAttribute(Attribute attribute)
Set the value of a specific attribute of the Dynamic MBean.void
MBeanServer. setAttribute(ObjectName name, Attribute attribute)
void
MBeanServerConnection. setAttribute(ObjectName name, Attribute attribute)
Sets the value of a specific attribute of a named MBean.void
StandardMBean. setAttribute(Attribute attribute)
void
PersistentMBean. store()
Captures the current state of this MBean instance and writes it out to the persistent store. -
Uses of MBeanException in javax.management.modelmbean
Methods in javax.management.modelmbean that throw MBeanException Modifier and Type Method Description void
ModelMBeanNotificationBroadcaster. addAttributeChangeNotificationListener(NotificationListener listener, String attributeName, Object handback)
Registers an object which implements the NotificationListener interface as a listener.void
RequiredModelMBean. addAttributeChangeNotificationListener(NotificationListener inlistener, String inAttributeName, Object inhandback)
ModelMBeanAttributeInfo
ModelMBeanInfo. getAttribute(String inName)
Returns a ModelMBeanAttributeInfo requested by name.ModelMBeanAttributeInfo
ModelMBeanInfoSupport. getAttribute(String inName)
Object
RequiredModelMBean. getAttribute(String attrName)
Returns the value of a specific attribute defined for this ModelMBean.ModelMBeanConstructorInfo
ModelMBeanInfoSupport. getConstructor(String inName)
Returns the ModelMBeanConstructorInfo requested by name.Descriptor
ModelMBeanInfo. getDescriptor(String inDescriptorName, String inDescriptorType)
Returns a Descriptor requested by name and descriptorType.Descriptor
ModelMBeanInfoSupport. getDescriptor(String inDescriptorName)
Returns a Descriptor requested by name.Descriptor
ModelMBeanInfoSupport. getDescriptor(String inDescriptorName, String inDescriptorType)
Descriptor[]
ModelMBeanInfo. getDescriptors(String inDescriptorType)
Returns a Descriptor array consisting of all Descriptors for the ModelMBeanInfo of type inDescriptorType.Descriptor[]
ModelMBeanInfoSupport. getDescriptors(String inDescriptorType)
Descriptor
ModelMBeanInfo. getMBeanDescriptor()
Returns the ModelMBean's descriptor which contains MBean wide policies.Descriptor
ModelMBeanInfoSupport. getMBeanDescriptor()
ModelMBeanNotificationInfo
ModelMBeanInfo. getNotification(String inName)
Returns a ModelMBeanNotificationInfo requested by name.ModelMBeanNotificationInfo
ModelMBeanInfoSupport. getNotification(String inName)
ModelMBeanOperationInfo
ModelMBeanInfo. getOperation(String inName)
Returns a ModelMBeanOperationInfo requested by name.ModelMBeanOperationInfo
ModelMBeanInfoSupport. getOperation(String inName)
Object
RequiredModelMBean. invoke(String opName, Object[] opArgs, String[] sig)
Invokes a method on or through a RequiredModelMBean and returns the result of the method execution.void
RequiredModelMBean. load()
Instantiates this MBean instance with the data found for the MBean in the persistent store.void
ModelMBeanNotificationBroadcaster. removeAttributeChangeNotificationListener(NotificationListener listener, String attributeName)
Removes a listener for attributeChangeNotifications from the RequiredModelMBean.void
RequiredModelMBean. removeAttributeChangeNotificationListener(NotificationListener inlistener, String inAttributeName)
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
RequiredModelMBean. sendAttributeChangeNotification(AttributeChangeNotification ntfyObj)
void
RequiredModelMBean. sendAttributeChangeNotification(Attribute inOldVal, Attribute inNewVal)
void
ModelMBeanNotificationBroadcaster. sendNotification(String ntfyText)
Sends a Notification which contains the text string that is passed in to the registered Notification listeners on the ModelMBean.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
RequiredModelMBean. sendNotification(String ntfyText)
void
RequiredModelMBean. sendNotification(Notification ntfyObj)
void
RequiredModelMBean. setAttribute(Attribute attribute)
Sets the value of a specific attribute of a named ModelMBean.void
ModelMBeanInfo. setDescriptor(Descriptor inDescriptor, String inDescriptorType)
Sets descriptors in the info array of type inDescriptorType for the ModelMBean.void
ModelMBeanInfoSupport. setDescriptor(Descriptor inDescriptor, String inDescriptorType)
void
ModelMBeanInfo. setDescriptors(Descriptor[] inDescriptors)
Adds or replaces descriptors in the ModelMBeanInfo.void
ModelMBeanInfoSupport. setDescriptors(Descriptor[] inDescriptors)
void
ModelMBean. setManagedResource(Object mr, 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. setManagedResource(Object mr, 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
ModelMBeanInfo. setMBeanDescriptor(Descriptor inDescriptor)
Sets the ModelMBean's descriptor.void
ModelMBeanInfoSupport. setMBeanDescriptor(Descriptor inMBeanDescriptor)
void
ModelMBean. setModelMBeanInfo(ModelMBeanInfo inModelMBeanInfo)
Initializes a ModelMBean object using ModelMBeanInfo passed in.void
RequiredModelMBean. setModelMBeanInfo(ModelMBeanInfo mbi)
Initializes a ModelMBean object using ModelMBeanInfo passed in.void
RequiredModelMBean. store()
Captures the current state of this MBean instance and writes it out to the persistent store.Constructors in javax.management.modelmbean that throw MBeanException Constructor Description DescriptorSupport(int initNumFields)
Descriptor constructor.DescriptorSupport(String inStr)
Descriptor constructor taking an XML String.RequiredModelMBean()
Constructs anRequiredModelMBean
with an empty ModelMBeanInfo.RequiredModelMBean(ModelMBeanInfo mbi)
Constructs a RequiredModelMBean object using ModelMBeanInfo passed in. -
Uses of MBeanException in javax.management.remote.rmi
Methods in javax.management.remote.rmi that throw MBeanException Modifier and Type Method Description ObjectInstance
RMIConnection. createMBean(String className, ObjectName name, MarshalledObject params, String[] signature, Subject delegationSubject)
Handles the methodMBeanServerConnection.createMBean(String, ObjectName, Object[], String[])
.ObjectInstance
RMIConnection. createMBean(String className, ObjectName name, ObjectName loaderName, MarshalledObject params, String[] signature, Subject delegationSubject)
ObjectInstance
RMIConnection. createMBean(String className, ObjectName name, ObjectName loaderName, Subject delegationSubject)
Handles the methodMBeanServerConnection.createMBean(String, ObjectName, ObjectName)
.ObjectInstance
RMIConnection. createMBean(String className, ObjectName name, Subject delegationSubject)
Handles the methodMBeanServerConnection.createMBean(String, ObjectName)
.ObjectInstance
RMIConnectionImpl_Stub. createMBean(String $param_String_1, ObjectName $param_ObjectName_2, MarshalledObject $param_MarshalledObject_3, String[] $param_arrayOf_String_4, Subject $param_Subject_5)
ObjectInstance
RMIConnectionImpl_Stub. createMBean(String $param_String_1, ObjectName $param_ObjectName_2, ObjectName $param_ObjectName_3, MarshalledObject $param_MarshalledObject_4, String[] $param_arrayOf_String_5, Subject $param_Subject_6)
ObjectInstance
RMIConnectionImpl_Stub. createMBean(String $param_String_1, ObjectName $param_ObjectName_2, ObjectName $param_ObjectName_3, Subject $param_Subject_4)
ObjectInstance
RMIConnectionImpl_Stub. createMBean(String $param_String_1, ObjectName $param_ObjectName_2, Subject $param_Subject_3)
ObjectInstance
RMIConnectionImpl. createMBean(String className, ObjectName name, MarshalledObject params, String[] signature, Subject delegationSubject)
ObjectInstance
RMIConnectionImpl. createMBean(String className, ObjectName name, ObjectName loaderName, MarshalledObject params, String[] signature, Subject delegationSubject)
ObjectInstance
RMIConnectionImpl. createMBean(String className, ObjectName name, ObjectName loaderName, Subject delegationSubject)
ObjectInstance
RMIConnectionImpl. createMBean(String className, ObjectName name, Subject delegationSubject)
Object
RMIConnection. getAttribute(ObjectName name, String attribute, Subject delegationSubject)
Handles the methodMBeanServerConnection.getAttribute(ObjectName, String)
.Object
RMIConnectionImpl_Stub. getAttribute(ObjectName $param_ObjectName_1, String $param_String_2, Subject $param_Subject_3)
Object
RMIConnectionImpl. getAttribute(ObjectName name, String attribute, Subject delegationSubject)
Object
RMIConnection. invoke(ObjectName name, String operationName, MarshalledObject params, String[] signature, Subject delegationSubject)
Handles the methodMBeanServerConnection.invoke(ObjectName, String, Object[], String[])
.Object
RMIConnectionImpl_Stub. invoke(ObjectName $param_ObjectName_1, String $param_String_2, MarshalledObject $param_MarshalledObject_3, String[] $param_arrayOf_String_4, Subject $param_Subject_5)
Object
RMIConnectionImpl. invoke(ObjectName name, String operationName, MarshalledObject params, String[] signature, Subject delegationSubject)
void
RMIConnection. setAttribute(ObjectName name, MarshalledObject attribute, Subject delegationSubject)
Handles the methodMBeanServerConnection.setAttribute(ObjectName, Attribute)
.void
RMIConnectionImpl_Stub. setAttribute(ObjectName $param_ObjectName_1, MarshalledObject $param_MarshalledObject_2, Subject $param_Subject_3)
void
RMIConnectionImpl. setAttribute(ObjectName name, MarshalledObject attribute, Subject delegationSubject)
-