Uses of Class
javax.management.ObjectInstance
Package | Description |
---|---|
javax.management |
Provides the core classes for the Java Management Extensions.
|
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 ObjectInstance in javax.management
Methods in javax.management that return ObjectInstance 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.ObjectInstance
MBeanServerConnection. getObjectInstance(ObjectName name)
Gets theObjectInstance
for a given MBean registered with the MBean server.ObjectInstance
MBeanServer. registerMBean(Object object, ObjectName name)
Registers a pre-existing object as an MBean with the MBean server.Methods in javax.management that return types with arguments of type ObjectInstance Modifier and Type Method Description Set<ObjectInstance>
MBeanServer. queryMBeans(ObjectName name, QueryExp query)
Gets MBeans controlled by the MBean server.Set<ObjectInstance>
MBeanServerConnection. queryMBeans(ObjectName name, QueryExp query)
Gets MBeans controlled by the MBean server. -
Uses of ObjectInstance in javax.management.remote.rmi
Methods in javax.management.remote.rmi that return types with arguments of type ObjectInstance Modifier and Type Method Description Set<ObjectInstance>
RMIConnection. queryMBeans(ObjectName name, MarshalledObject query, Subject delegationSubject)
Handles the methodMBeanServerConnection.queryMBeans(ObjectName, QueryExp)
.