|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use InstanceNotFoundException | |
| javax.management | |
| javax.management.modelmbean | |
| javax.management.relation | |
| javax.management.timer | |
| org.huihoo.jfox.jmx | |
| Uses of InstanceNotFoundException in javax.management |
| Methods in javax.management that throw InstanceNotFoundException | |
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,
ObjectName loaderName)
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. |
void |
MBeanServerConnection.unregisterMBean(ObjectName name)
Unregisters an MBean from the MBean server. |
ObjectInstance |
MBeanServerConnection.getObjectInstance(ObjectName name)
Gets the ObjectInstance for a given MBean
registered with 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. |
AttributeList |
MBeanServerConnection.getAttributes(ObjectName name,
java.lang.String[] attributes)
Enables the values of several attributes of a named MBean. |
void |
MBeanServerConnection.setAttribute(ObjectName name,
Attribute attribute)
Sets the value of a specific attribute of a named MBean. |
AttributeList |
MBeanServerConnection.setAttributes(ObjectName name,
AttributeList attributes)
Sets the values of several attributes 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. |
void |
MBeanServerConnection.addNotificationListener(ObjectName name,
NotificationListener listener,
NotificationFilter filter,
java.lang.Object handback)
Adds a listener to a registered MBean. A notification emitted by an MBean will be forwarded by the MBeanServer to the listener. |
void |
MBeanServerConnection.addNotificationListener(ObjectName name,
ObjectName listener,
NotificationFilter filter,
java.lang.Object handback)
Adds a listener to a registered MBean. A notification emitted by an MBean will be forwarded by the MBeanServer to the listener. |
void |
MBeanServerConnection.removeNotificationListener(ObjectName name,
ObjectName listener)
Removes a listener from a registered MBean. |
void |
MBeanServerConnection.removeNotificationListener(ObjectName name,
ObjectName listener,
NotificationFilter filter,
java.lang.Object handback)
Removes a listener from a registered MBean. The MBean must have a listener that exactly matches the given listener, filter, and
handback parameters. |
void |
MBeanServerConnection.removeNotificationListener(ObjectName name,
NotificationListener listener)
Removes a listener from a registered MBean. If the listener is registered more than once, perhaps with different filters or callbacks, this method will remove all those registrations. |
void |
MBeanServerConnection.removeNotificationListener(ObjectName name,
NotificationListener listener,
NotificationFilter filter,
java.lang.Object handback)
Removes a listener from a registered MBean. The MBean must have a listener that exactly matches the given listener, filter, and
handback parameters. |
MBeanInfo |
MBeanServerConnection.getMBeanInfo(ObjectName name)
This method discovers the attributes and operations that an MBean exposes for management. |
boolean |
MBeanServerConnection.isInstanceOf(ObjectName name,
java.lang.String className)
Returns true if the MBean specified is an instance of the specified class, false otherwise. If name does not name an MBean, this method
throws InstanceNotFoundException.
Otherwise, letX be the MBean named by name,L be the ClassLoader of X, N be the class name in X's MBeanInfo.
If N equals className, the result is true.
Otherwise, if L successfully loads both N and
className, and the second class is assignable from
the first, the result is true.
Otherwise, the result is false. |
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,
ObjectName loaderName,
java.lang.Object[] params,
java.lang.String[] signature)
Instantiates an object. |
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,
ObjectName loaderName,
java.lang.Object[] params,
java.lang.String[] signature)
Instantiates and registers an MBean in the MBean server. |
void |
MBeanServer.unregisterMBean(ObjectName name)
De-registers an MBean from the MBean server. |
ObjectInstance |
MBeanServer.getObjectInstance(ObjectName name)
Gets the ObjectInstance for a given MBean registered with 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. |
AttributeList |
MBeanServer.getAttributes(ObjectName name,
java.lang.String[] attributes)
Enables the values of several attributes of a named MBean. |
void |
MBeanServer.setAttribute(ObjectName name,
Attribute attribute)
Sets the value of a specific attribute of a named MBean. |
AttributeList |
MBeanServer.setAttributes(ObjectName name,
AttributeList attributes)
Sets the values of several attributes 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. |
void |
MBeanServer.addNotificationListener(ObjectName name,
NotificationListener listener,
NotificationFilter filter,
java.lang.Object handback)
Enables to add a listener to a registered MBean. |
void |
MBeanServer.addNotificationListener(ObjectName name,
ObjectName listener,
NotificationFilter filter,
java.lang.Object handback)
Enables to add a listener to a registered MBean. |
void |
MBeanServer.removeNotificationListener(ObjectName name,
NotificationListener listener)
Enables to remove a listener from a registered MBean. |
void |
MBeanServer.removeNotificationListener(ObjectName name,
ObjectName listener)
Enables to remove a listener from a registered MBean. |
MBeanInfo |
MBeanServer.getMBeanInfo(ObjectName name)
This method discovers the attributes and operations that an MBean exposes for management. |
boolean |
MBeanServer.isInstanceOf(ObjectName name,
java.lang.String className)
Returns true if the MBean specified is an instance of the specified class, false otherwise. |
java.lang.ClassLoader |
MBeanServer.getClassLoaderFor(ObjectName mbeanName)
Return the ClassLoader that was used for
loading the class of the named MBean. |
java.lang.ClassLoader |
MBeanServer.getClassLoader(ObjectName loaderName)
Return the named ClassLoader. |
void |
MBeanServer.removeNotificationListener(ObjectName name,
ObjectName listener,
NotificationFilter filter,
java.lang.Object handback)
Removes a listener from a registered MBean. The MBean must have a listener that exactly matches the given listener, filter, and
handback parameters. |
void |
MBeanServer.removeNotificationListener(ObjectName name,
NotificationListener listener,
NotificationFilter filter,
java.lang.Object handback)
Removes a listener from a registered MBean. The MBean must have a listener that exactly matches the given listener, filter, and
handback parameters. |
| Uses of InstanceNotFoundException in javax.management.modelmbean |
| Methods in javax.management.modelmbean that throw InstanceNotFoundException | |
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) |
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()
|
| Uses of InstanceNotFoundException in javax.management.relation |
| Methods in javax.management.relation that throw InstanceNotFoundException | |
void |
RelationService.addRelation(ObjectName objectName)
add a external Relation with it's DEFAULT_OBJECTNAME |
void |
RelationServiceMBean.addRelation(ObjectName objectName)
Adds a MBean created by te user (and registered by him in the MBean Server) as a relation in the Relation Service. |
| Uses of InstanceNotFoundException in javax.management.timer |
| Methods in javax.management.timer that throw InstanceNotFoundException | |
void |
TimerMBean.removeNotification(java.lang.Integer id)
Removes the timer notification corresponding to the specified identifier from the list of notifications. |
void |
TimerMBean.removeNotifications(java.lang.String type)
Removes all the timer notifications corresponding to the specified type from the list of notifications. |
void |
Timer.removeNotification(java.lang.Integer id)
|
void |
Timer.removeNotifications(java.lang.String type)
|
| Uses of InstanceNotFoundException in org.huihoo.jfox.jmx |
| Methods in org.huihoo.jfox.jmx that throw InstanceNotFoundException | |
java.lang.Object |
MBeanServerSupport.instantiate(java.lang.String className,
ObjectName loaderName)
|
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,
ObjectName loaderName)
|
ObjectInstance |
MBeanServerSupport.createMBean(java.lang.String className,
ObjectName objectName,
ObjectName loaderName,
java.lang.Object[] params,
java.lang.String[] signatures)
|
void |
MBeanServerSupport.unregisterMBean(ObjectName objectName)
|
ObjectInstance |
MBeanServerSupport.getObjectInstance(ObjectName objectName)
|
java.lang.Object |
MBeanServerSupport.getAttribute(ObjectName objectName,
java.lang.String attribute)
|
AttributeList |
MBeanServerSupport.getAttributes(ObjectName objectName,
java.lang.String[] attributes)
|
void |
MBeanServerSupport.setAttribute(ObjectName objectName,
Attribute attribute)
|
AttributeList |
MBeanServerSupport.setAttributes(ObjectName objectName,
AttributeList attributes)
|
java.lang.Object |
MBeanServerSupport.invoke(ObjectName objectName,
java.lang.String operationName,
java.lang.Object[] params,
java.lang.String[] signatures)
|
void |
MBeanServerSupport.addNotificationListener(ObjectName objectName,
NotificationListener listener,
NotificationFilter filter,
java.lang.Object handback)
|
void |
MBeanServerSupport.addNotificationListener(ObjectName objectName,
ObjectName listenerName,
NotificationFilter filter,
java.lang.Object handback)
|
void |
MBeanServerSupport.removeNotificationListener(ObjectName objectName,
NotificationListener listener)
|
void |
MBeanServerSupport.removeNotificationListener(ObjectName objectName,
ObjectName listenerName)
|
MBeanInfo |
MBeanServerSupport.getMBeanInfo(ObjectName objectName)
|
boolean |
MBeanServerSupport.isInstanceOf(ObjectName objectName,
java.lang.String className)
|
java.lang.ClassLoader |
MBeanServerSupport.getClassLoaderFor(ObjectName objectName)
Return the ClassLoader that was used for
loading the class of the named MBean. |
java.lang.ClassLoader |
MBeanServerSupport.getClassLoader(ObjectName loaderName)
Return the named ClassLoader. |
void |
MBeanServerSupport.removeNotificationListener(ObjectName objectName,
ObjectName listenerName,
NotificationFilter filter,
java.lang.Object handback)
Removes a listener from a registered MBean. The MBean must have a listener that exactly matches the given listener, filter, and
handback parameters. |
void |
MBeanServerSupport.removeNotificationListener(ObjectName objectName,
NotificationListener listener,
NotificationFilter filter,
java.lang.Object handback)
Removes a listener from a registered MBean. The MBean must have a listener that exactly matches the given listener, filter, and
handback parameters. |
MBeanMetaData |
MBeanServerRepositoryController.retrieve(ObjectName name)
|
void |
MBeanServerRepositoryController.remove(ObjectName name)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||