logger.debug("loading mbeans using an annotation finder, you should maybe adjust {} system property",
OPENEJB_MBEAN_CLASSES_PROPERTY);
List<Class<?>> list = Collections.emptyList();
try {
ClassFinder mbeanFinder = new ClassFinder(classLoader, true);
list = mbeanFinder.findAnnotatedClasses(MBean.class);
} catch (Exception e) {
logger.error("can't find annotated MBean", e);
}
for (Class<?> clazz : list) {