@Override
public ClassLoaderRepository getClassLoaderRepository() {
Throwable error = null;
MBeanServerPlugin delegate = rootMBeanServer;
final boolean readOnly = true;
try {
//Special authorization
authorizeClassloadingOperation(delegate, GET_CLASSLOADER_REPOSITORY);
return delegate.getClassLoaderRepository();
} catch (Exception e) {
error = e;
throw makeRuntimeException(e);
} finally {
if (shouldAuditLog(delegate, readOnly)) {
new MBeanServerAuditLogRecordFormatter(this, error, readOnly).getClassLoaderRepository();
}
}
}
PluggableMBeanServerImpl.java 文件源码
java
阅读 23
收藏 0
点赞 0
评论 0
项目:wildfly-core
作者:
评论列表
文章目录