- 所有超级接口:
-
MBeanServer
,MBeanServerConnection
此类的对象实现了MBeanServer接口,并包装另一个也实现该接口的对象。通常,此接口的实现在将方法转发给包装对象之前和/或之后执行某些操作。示例包括安全检查和日志记录。
- 自JDK版本:
- 1.5
-
Method Summary
Modifier and TypeMethodDescription返回将转发请求的MBeanServer对象。void
在此对象处理后,设置将转发请求的MBeanServer对象。Methods declared in interface javax.management.MBeanServer
addNotificationListener, addNotificationListener, createMBean, createMBean, createMBean, createMBean, deserialize, deserialize, deserialize, getAttribute, getAttributes, getClassLoader, getClassLoaderFor, getClassLoaderRepository, getDefaultDomain, getDomains, getMBeanCount, getMBeanInfo, getObjectInstance, instantiate, instantiate, instantiate, instantiate, invoke, isInstanceOf, isRegistered, queryMBeans, queryNames, registerMBean, removeNotificationListener, removeNotificationListener, removeNotificationListener, removeNotificationListener, setAttribute, setAttributes, unregisterMBean
-
Method Details
-
getMBeanServer
MBeanServer getMBeanServer()返回将转发请求的MBeanServer对象。- 返回:
- 将转发请求的MBeanServer对象,如果没有则返回null。
- 参见:
-
setMBeanServer
在此对象处理后,设置将转发请求的MBeanServer对象。- 参数:
-
mbs
- 将转发请求的MBeanServer对象。 - 抛出:
-
IllegalArgumentException
- 如果此对象已经转发到一个MBeanServer对象,或者如果mbs
为null,或者如果mbs
与此对象相同。 - 参见:
-