Uses of Interface
javax.management.MBeanServer
Package
Description
Provides the management interfaces for monitoring and management of the
Java virtual machine and other components in the Java runtime.
Provides the core classes for the Java Management Extensions.
Provides the classes which implement advanced dynamic
loading.
Provides the definition of the ModelMBean classes.
Provides the definition of the monitor classes.
Provides the definition of the Relation Service.
Interfaces for remote access to
JMX MBean servers.
The RMI connector is a connector for the JMX Remote API that
uses RMI to transmit client requests to a remote MBean server.
Provides the definition of the Timer MBean.
-
Uses of MBeanServer in java.lang.management
Modifier and TypeMethodDescriptionstatic MBeanServer
ManagementFactory.getPlatformMBeanServer()
Returns the platformMBeanServer
. -
Uses of MBeanServer in javax.management
Modifier and TypeMethodDescriptionstatic MBeanServer
MBeanServerFactory.createMBeanServer()
Return a new object implementing the MBeanServer interface with a standard default domain name.static MBeanServer
MBeanServerFactory.createMBeanServer
(String domain) Return a new object implementing theMBeanServer
interface with the specified default domain name.static MBeanServer
QueryEval.getMBeanServer()
Return the MBean server that was most recently given to thesetMBeanServer
method by this thread.MBeanServerBuilder.newMBeanServer
(String defaultDomain, MBeanServer outer, MBeanServerDelegate delegate) This method creates a new MBeanServer implementation object.static MBeanServer
MBeanServerFactory.newMBeanServer()
Return a new object implementing the MBeanServer interface with a standard default domain name, without keeping an internal reference to this new object.static MBeanServer
MBeanServerFactory.newMBeanServer
(String domain) Return a new object implementing the MBeanServer interface with the specified default domain name, without keeping an internal reference to this new object.Modifier and TypeMethodDescriptionstatic ArrayList
<MBeanServer> MBeanServerFactory.findMBeanServer
(String agentId) Return a list of registered MBeanServer objects.Modifier and TypeMethodDescriptionstatic ClassLoaderRepository
MBeanServerFactory.getClassLoaderRepository
(MBeanServer server) Return the ClassLoaderRepository used by the given MBeanServer.MBeanServerBuilder.newMBeanServer
(String defaultDomain, MBeanServer outer, MBeanServerDelegate delegate) This method creates a new MBeanServer implementation object.MBeanRegistration.preRegister
(MBeanServer server, ObjectName name) Allows the MBean to perform any operations it needs before being registered in the MBean Server.StandardMBean.preRegister
(MBeanServer server, ObjectName name) Allows the MBean to perform any operations it needs before being registered in the MBean server.static void
MBeanServerFactory.releaseMBeanServer
(MBeanServer mbeanServer) Remove internal MBeanServerFactory references to a created MBeanServer.void
AttributeValueExp.setMBeanServer
(MBeanServer s) Deprecated.This method has no effect.void
ObjectName.setMBeanServer
(MBeanServer mbs) void
QueryEval.setMBeanServer
(MBeanServer s) Sets the MBean server on which the query is to be performed.void
QueryExp.setMBeanServer
(MBeanServer s) Sets the MBean server on which the query is to be performed.void
StringValueExp.setMBeanServer
(MBeanServer s) Deprecated.void
ValueExp.setMBeanServer
(MBeanServer s) Deprecated.This method is not needed because aValueExp
can access the MBean server in which it is being evaluated by usingQueryEval.getMBeanServer()
. -
Uses of MBeanServer in javax.management.loading
Modifier and TypeMethodDescriptionMLet.preRegister
(MBeanServer server, ObjectName name) Deprecated, for removal: This API element is subject to removal in a future version.Allows the m-let to perform any operations it needs before being registered in the MBean server. -
Uses of MBeanServer in javax.management.modelmbean
Modifier and TypeMethodDescriptionRequiredModelMBean.preRegister
(MBeanServer server, ObjectName name) Allows the MBean to perform any operations it needs before being registered in the MBean server. -
Uses of MBeanServer in javax.management.monitor
Modifier and TypeFieldDescriptionprotected MBeanServer
Monitor.server
Reference to the MBean server.Modifier and TypeMethodDescriptionMonitor.preRegister
(MBeanServer server, ObjectName name) Allows the monitor MBean to perform any operations it needs before being registered in the MBean server. -
Uses of MBeanServer in javax.management.relation
Modifier and TypeMethodDescriptionRelationService.preRegister
(MBeanServer server, ObjectName name) RelationSupport.preRegister
(MBeanServer server, ObjectName name) ModifierConstructorDescriptionRelationSupport
(String relationId, ObjectName relationServiceName, MBeanServer relationServiceMBeanServer, String relationTypeName, RoleList list) Creates aRelationSupport
object. -
Uses of MBeanServer in javax.management.remote
Modifier and TypeInterfaceDescriptioninterface
An object of this class implements the MBeanServer interface and wraps another object that also implements that interface.Modifier and TypeMethodDescriptionJMXConnectorServer.getMBeanServer()
Returns the MBean server that this connector server is attached to.MBeanServerForwarder.getMBeanServer()
Returns the MBeanServer object to which requests will be forwarded.Modifier and TypeMethodDescriptionstatic JMXConnectorServer
JMXConnectorServerFactory.newJMXConnectorServer
(JMXServiceURL serviceURL, Map<String, ?> environment, MBeanServer mbeanServer) Creates a connector server at the given address.JMXConnectorServerProvider.newJMXConnectorServer
(JMXServiceURL serviceURL, Map<String, ?> environment, MBeanServer mbeanServer) Creates a new connector server at the given address.JMXConnectorServer.preRegister
(MBeanServer mbs, ObjectName name) Called by an MBean server when this connector server is registered in that MBean server.void
MBeanServerForwarder.setMBeanServer
(MBeanServer mbs) Sets the MBeanServer object to which requests will be forwarded after treatment by this object.ModifierConstructorDescriptionJMXConnectorServer
(MBeanServer mbeanServer) Constructs a connector server that is attached to the given MBean server. -
Uses of MBeanServer in javax.management.remote.rmi
Modifier and TypeMethodDescriptionRMIServerImpl.getMBeanServer()
TheMBeanServer
to which this connector server is attached.Modifier and TypeMethodDescriptionvoid
RMIServerImpl.setMBeanServer
(MBeanServer mbs) Sets theMBeanServer
to which this connector server is attached.ModifierConstructorDescriptionRMIConnectorServer
(JMXServiceURL url, Map<String, ?> environment, MBeanServer mbeanServer) Makes anRMIConnectorServer
for the given MBean server.RMIConnectorServer
(JMXServiceURL url, Map<String, ?> environment, RMIServerImpl rmiServerImpl, MBeanServer mbeanServer) Makes anRMIConnectorServer
for the given MBean server. -
Uses of MBeanServer in javax.management.timer
Modifier and TypeMethodDescriptionTimer.preRegister
(MBeanServer server, ObjectName name) Allows the timer MBean to perform any operations it needs before being registered in the MBean server.