final String CUSTOM_REGRISTRATION_IMPL_CLASS = "com.sun.enterprise.admin.mbeans.custom.loading.CustomMBeanRegistrationImpl";
final Class c = Class.forName(CUSTOM_REGRISTRATION_IMPL_CLASS);
final Class[] pts = new Class[]{javax.management.MBeanServer.class};
final Constructor ctor = c.getConstructor(pts);
final Object[] aps = new Object[]{mbs};
return ( (CustomMBeanRegistration) ctor.newInstance(aps) );