@Override
public Set<ObjectInstance> queryMBeans(ObjectName name, QueryExp query) {
// We need to filter out the AccessControlMXBean so that the clients wouldn't see it
if (query != null)
return mbs.queryMBeans(name, Query.and(query, notAccessControlMBean));
else
return mbs.queryMBeans(name, notAccessControlMBean);
}
MBeanServerWrapper.java 文件源码
java
阅读 23
收藏 0
点赞 0
评论 0
项目:monarch
作者:
评论列表
文章目录