/* 92 */ ClassLoader ocl = new DispatchClassLoader(resource.getClass().getClassLoader(), className, baos.toByteArray());
/* */
/* 94 */ Class dispatcherClass = ocl.loadClass(className);
/* 95 */ Constructor constr = dispatcherClass.getConstructor(new Class[] { MBeanInfo.class, AttributeOperationResolver.class, Object.class });
/* */
/* 99 */ Object o = constr.newInstance(new Object[] { info, new AttributeOperationResolver(info), resource });
/* */
/* 101 */ return (ReflectedMBeanDispatcher)o;
/* */ }
/* */ catch (Exception e)
/* */ {