public class com.sun.jmx.mbeanserver.MBeanInstantiator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.jmx.mbeanserver.MBeanInstantiator
  super_class: java.lang.Object
{
  private final com.sun.jmx.mbeanserver.ModifiableClassLoaderRepository clr;
    descriptor: Lcom/sun/jmx/mbeanserver/ModifiableClassLoaderRepository;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private static final java.util.Map<java.lang.String, java.lang.Class<?>> primitiveClasses;
    descriptor: Ljava/util/Map;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=4, args_size=0
         0: .line 728
            invokestatic com.sun.jmx.mbeanserver.Util.newMap:()Ljava/util/Map;
            putstatic com.sun.jmx.mbeanserver.MBeanInstantiator.primitiveClasses:Ljava/util/Map;
         1: .line 730
            bipush 8
            anewarray java.lang.Class
            dup
            iconst_0
            getstatic java.lang.Byte.TYPE:Ljava/lang/Class;
            aastore
            dup
            iconst_1
            getstatic java.lang.Short.TYPE:Ljava/lang/Class;
            aastore
            dup
            iconst_2
            getstatic java.lang.Integer.TYPE:Ljava/lang/Class;
            aastore
            dup
            iconst_3
         2: .line 731
            getstatic java.lang.Long.TYPE:Ljava/lang/Class;
            aastore
            dup
            iconst_4
            getstatic java.lang.Float.TYPE:Ljava/lang/Class;
            aastore
            dup
            iconst_5
            getstatic java.lang.Double.TYPE:Ljava/lang/Class;
            aastore
            dup
            bipush 6
         3: .line 732
            getstatic java.lang.Character.TYPE:Ljava/lang/Class;
            aastore
            dup
            bipush 7
            getstatic java.lang.Boolean.TYPE:Ljava/lang/Class;
            aastore
            dup
            astore 3
            arraylength
            istore 2
            iconst_0
            istore 1
            goto 7
      StackMap locals: top int int java.lang.Class[]
      StackMap stack:
         4: aload 3
            iload 1
            aaload
            astore 0 /* c */
        start local 0 // java.lang.Class c
         5: .line 733
            getstatic com.sun.jmx.mbeanserver.MBeanInstantiator.primitiveClasses:Ljava/util/Map;
            aload 0 /* c */
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            aload 0 /* c */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 0 // java.lang.Class c
         6: .line 730
            iinc 1 1
      StackMap locals:
      StackMap stack:
         7: iload 1
            iload 2
            if_icmplt 4
         8: .line 734
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            5    6     0     c  Ljava/lang/Class<*>;

  void <init>(com.sun.jmx.mbeanserver.ModifiableClassLoaderRepository);
    descriptor: (Lcom/sun/jmx/mbeanserver/ModifiableClassLoaderRepository;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
        start local 1 // com.sun.jmx.mbeanserver.ModifiableClassLoaderRepository clr
         0: .line 69
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 70
            aload 0 /* this */
            aload 1 /* clr */
            putfield com.sun.jmx.mbeanserver.MBeanInstantiator.clr:Lcom/sun/jmx/mbeanserver/ModifiableClassLoaderRepository;
         2: .line 71
            return
        end local 1 // com.sun.jmx.mbeanserver.ModifiableClassLoaderRepository clr
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            0    3     1   clr  Lcom/sun/jmx/mbeanserver/ModifiableClassLoaderRepository;
    MethodParameters:
      Name  Flags
      clr   

  public void testCreation(java.lang.Class);
    descriptor: (Ljava/lang/Class;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
        start local 1 // java.lang.Class c
         0: .line 80
            aload 1 /* c */
            invokestatic com.sun.jmx.mbeanserver.Introspector.testCreation:(Ljava/lang/Class;)V
         1: .line 81
            return
        end local 1 // java.lang.Class c
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            0    2     1     c  Ljava/lang/Class;
    Exceptions:
      throws javax.management.NotCompliantMBeanException
    MethodParameters:
      Name  Flags
      c     

  public java.lang.Class findClassWithDefaultLoaderRepository(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Class;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
        start local 1 // java.lang.String className
         0: .line 91
            aload 1 /* className */
            ifnonnull 6
         1: .line 92
            new javax.management.RuntimeOperationsException
            dup
         2: .line 93
            new java.lang.IllegalArgumentException
            dup
            ldc "The class name cannot be null"
         3: .line 92
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
         4: .line 94
            ldc "Exception occurred during object instantiation"
         5: .line 92
            invokespecial javax.management.RuntimeOperationsException.<init>:(Ljava/lang/RuntimeException;Ljava/lang/String;)V
            athrow
         6: .line 97
      StackMap locals:
      StackMap stack:
            aload 1 /* className */
            invokestatic sun.reflect.misc.ReflectUtil.checkPackageAccess:(Ljava/lang/String;)V
         7: .line 99
            aload 0 /* this */
            getfield com.sun.jmx.mbeanserver.MBeanInstantiator.clr:Lcom/sun/jmx/mbeanserver/ModifiableClassLoaderRepository;
            ifnonnull 8
            new java.lang.ClassNotFoundException
            dup
            aload 1 /* className */
            invokespecial java.lang.ClassNotFoundException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 100
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jmx.mbeanserver.MBeanInstantiator.clr:Lcom/sun/jmx/mbeanserver/ModifiableClassLoaderRepository;
            aload 1 /* className */
            invokeinterface com.sun.jmx.mbeanserver.ModifiableClassLoaderRepository.loadClass:(Ljava/lang/String;)Ljava/lang/Class;
            astore 2 /* theClass */
        start local 2 // java.lang.Class theClass
         9: .line 101
            goto 14
        end local 2 // java.lang.Class theClass
        10: .line 102
      StackMap locals:
      StackMap stack: java.lang.ClassNotFoundException
            astore 3 /* ee */
        start local 3 // java.lang.ClassNotFoundException ee
        11: .line 103
            new javax.management.ReflectionException
            dup
            aload 3 /* ee */
        12: .line 104
            ldc "The MBean class could not be loaded by the default loader repository"
        13: .line 103
            invokespecial javax.management.ReflectionException.<init>:(Ljava/lang/Exception;Ljava/lang/String;)V
            athrow
        end local 3 // java.lang.ClassNotFoundException ee
        start local 2 // java.lang.Class theClass
        14: .line 107
      StackMap locals: java.lang.Class
      StackMap stack:
            aload 2 /* theClass */
            areturn
        end local 2 // java.lang.Class theClass
        end local 1 // java.lang.String className
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   15     0       this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            0   15     1  className  Ljava/lang/String;
            9   10     2   theClass  Ljava/lang/Class;
           14   15     2   theClass  Ljava/lang/Class;
           11   14     3         ee  Ljava/lang/ClassNotFoundException;
      Exception table:
        from    to  target  type
           7     9      10  Class java.lang.ClassNotFoundException
    Exceptions:
      throws javax.management.ReflectionException
    MethodParameters:
           Name  Flags
      className  

  public java.lang.Class findClass(java.lang.String, java.lang.ClassLoader);
    descriptor: (Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/Class;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
        start local 1 // java.lang.String className
        start local 2 // java.lang.ClassLoader loader
         0: .line 118
            aload 1 /* className */
            aload 2 /* loader */
            invokestatic com.sun.jmx.mbeanserver.MBeanInstantiator.loadClass:(Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/Class;
            areturn
        end local 2 // java.lang.ClassLoader loader
        end local 1 // java.lang.String className
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            0    1     1  className  Ljava/lang/String;
            0    1     2     loader  Ljava/lang/ClassLoader;
    Exceptions:
      throws javax.management.ReflectionException
    MethodParameters:
           Name  Flags
      className  
      loader     

  public java.lang.Class findClass(java.lang.String, javax.management.ObjectName);
    descriptor: (Ljava/lang/String;Ljavax/management/ObjectName;)Ljava/lang/Class;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
        start local 1 // java.lang.String className
        start local 2 // javax.management.ObjectName aLoader
         0: .line 128
            aload 2 /* aLoader */
            ifnonnull 6
         1: .line 129
            new javax.management.RuntimeOperationsException
            dup
         2: .line 130
            new java.lang.IllegalArgumentException
            dup
         3: .line 129
            invokespecial java.lang.IllegalArgumentException.<init>:()V
         4: .line 130
            ldc "Null loader passed in parameter"
         5: .line 129
            invokespecial javax.management.RuntimeOperationsException.<init>:(Ljava/lang/RuntimeException;Ljava/lang/String;)V
            athrow
         6: .line 133
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 3 /* loader */
        start local 3 // java.lang.ClassLoader loader
         7: .line 134
            aload 0 /* this */
            dup
            astore 4
            monitorenter
         8: .line 135
            aload 0 /* this */
            aload 2 /* aLoader */
            invokevirtual com.sun.jmx.mbeanserver.MBeanInstantiator.getClassLoader:(Ljavax/management/ObjectName;)Ljava/lang/ClassLoader;
            astore 3 /* loader */
         9: .line 134
            aload 4
            monitorexit
        10: goto 13
      StackMap locals: com.sun.jmx.mbeanserver.MBeanInstantiator java.lang.String javax.management.ObjectName java.lang.ClassLoader com.sun.jmx.mbeanserver.MBeanInstantiator
      StackMap stack: java.lang.Throwable
        11: aload 4
            monitorexit
        12: athrow
        13: .line 137
      StackMap locals:
      StackMap stack:
            aload 3 /* loader */
            ifnonnull 17
        14: .line 138
            new javax.management.InstanceNotFoundException
            dup
            new java.lang.StringBuilder
            dup
            ldc "The loader named "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        15: .line 139
            aload 2 /* aLoader */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " is not registered in the MBeanServer"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        16: .line 138
            invokespecial javax.management.InstanceNotFoundException.<init>:(Ljava/lang/String;)V
            athrow
        17: .line 141
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* className */
            aload 3 /* loader */
            invokevirtual com.sun.jmx.mbeanserver.MBeanInstantiator.findClass:(Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/Class;
            areturn
        end local 3 // java.lang.ClassLoader loader
        end local 2 // javax.management.ObjectName aLoader
        end local 1 // java.lang.String className
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   18     0       this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            0   18     1  className  Ljava/lang/String;
            0   18     2    aLoader  Ljavax/management/ObjectName;
            7   18     3     loader  Ljava/lang/ClassLoader;
      Exception table:
        from    to  target  type
           8    10      11  any
          11    12      11  any
    Exceptions:
      throws javax.management.ReflectionException, javax.management.InstanceNotFoundException
    MethodParameters:
           Name  Flags
      className  
      aLoader    

  public java.lang.Class[] findSignatureClasses(java.lang.String[], java.lang.ClassLoader);
    descriptor: ([Ljava/lang/String;Ljava/lang/ClassLoader;)[Ljava/lang/Class;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=3
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
        start local 1 // java.lang.String[] signature
        start local 2 // java.lang.ClassLoader loader
         0: .line 153
            aload 1 /* signature */
            ifnonnull 1
            aconst_null
            areturn
         1: .line 154
      StackMap locals:
      StackMap stack:
            aload 2 /* loader */
            astore 3 /* aLoader */
        start local 3 // java.lang.ClassLoader aLoader
         2: .line 155
            aload 1 /* signature */
            arraylength
            istore 4 /* length */
        start local 4 // int length
         3: .line 156
            iload 4 /* length */
            anewarray java.lang.Class
            astore 5 /* tab */
        start local 5 // java.lang.Class[] tab
         4: .line 158
            iload 4 /* length */
            ifne 5
            aload 5 /* tab */
            areturn
         5: .line 160
      StackMap locals: java.lang.ClassLoader int java.lang.Class[]
      StackMap stack:
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         6: goto 19
         7: .line 165
      StackMap locals: int
      StackMap stack:
            getstatic com.sun.jmx.mbeanserver.MBeanInstantiator.primitiveClasses:Ljava/util/Map;
            aload 1 /* signature */
            iload 6 /* i */
            aaload
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Class
            astore 7 /* primCla */
        start local 7 // java.lang.Class primCla
         8: .line 166
            aload 7 /* primCla */
            ifnull 11
         9: .line 167
            aload 5 /* tab */
            iload 6 /* i */
            aload 7 /* primCla */
            aastore
        10: .line 168
            goto 18
        11: .line 171
      StackMap locals: java.lang.Class
      StackMap stack:
            aload 1 /* signature */
            iload 6 /* i */
            aaload
            invokestatic sun.reflect.misc.ReflectUtil.checkPackageAccess:(Ljava/lang/String;)V
        12: .line 175
            aload 3 /* aLoader */
            ifnull 15
        13: .line 179
            aload 5 /* tab */
            iload 6 /* i */
            aload 1 /* signature */
            iload 6 /* i */
            aaload
            iconst_0
            aload 3 /* aLoader */
            invokestatic java.lang.Class.forName:(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;
            aastore
        14: .line 180
            goto 18
        15: .line 183
      StackMap locals:
      StackMap stack:
            aload 5 /* tab */
            iload 6 /* i */
            aload 0 /* this */
            aload 1 /* signature */
            iload 6 /* i */
            aaload
        16: .line 184
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getClassLoader:()Ljava/lang/ClassLoader;
        17: .line 183
            invokevirtual com.sun.jmx.mbeanserver.MBeanInstantiator.findClass:(Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/Class;
            aastore
        end local 7 // java.lang.Class primCla
        18: .line 160
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 6 /* i */
            iload 4 /* length */
            if_icmplt 7
        end local 6 // int i
        20: .line 187
            goto 39
      StackMap locals: com.sun.jmx.mbeanserver.MBeanInstantiator java.lang.String[] java.lang.ClassLoader java.lang.ClassLoader int java.lang.Class[]
      StackMap stack: java.lang.ClassNotFoundException
        21: astore 6 /* e */
        start local 6 // java.lang.ClassNotFoundException e
        22: .line 188
            getstatic com.sun.jmx.defaults.JmxProperties.MBEANSERVER_LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINEST:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 28
        23: .line 189
            getstatic com.sun.jmx.defaults.JmxProperties.MBEANSERVER_LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINEST:Ljava/util/logging/Level;
        24: .line 190
            ldc Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
        25: .line 191
            ldc "findSignatureClasses"
        26: .line 192
            ldc "The parameter class could not be found"
            aload 6 /* e */
        27: .line 189
            invokevirtual java.util.logging.Logger.logp:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V
        28: .line 194
      StackMap locals: java.lang.ClassNotFoundException
      StackMap stack:
            new javax.management.ReflectionException
            dup
            aload 6 /* e */
        29: .line 195
            ldc "The parameter class could not be found"
        30: .line 194
            invokespecial javax.management.ReflectionException.<init>:(Ljava/lang/Exception;Ljava/lang/String;)V
            athrow
        end local 6 // java.lang.ClassNotFoundException e
        31: .line 196
      StackMap locals: com.sun.jmx.mbeanserver.MBeanInstantiator java.lang.String[] java.lang.ClassLoader java.lang.ClassLoader int java.lang.Class[]
      StackMap stack: java.lang.RuntimeException
            astore 6 /* e */
        start local 6 // java.lang.RuntimeException e
        32: .line 197
            getstatic com.sun.jmx.defaults.JmxProperties.MBEANSERVER_LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINEST:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 38
        33: .line 198
            getstatic com.sun.jmx.defaults.JmxProperties.MBEANSERVER_LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINEST:Ljava/util/logging/Level;
        34: .line 199
            ldc Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
        35: .line 200
            ldc "findSignatureClasses"
        36: .line 201
            ldc "Unexpected exception"
            aload 6 /* e */
        37: .line 198
            invokevirtual java.util.logging.Logger.logp:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V
        38: .line 203
      StackMap locals: java.lang.RuntimeException
      StackMap stack:
            aload 6 /* e */
            athrow
        end local 6 // java.lang.RuntimeException e
        39: .line 205
      StackMap locals:
      StackMap stack:
            aload 5 /* tab */
            areturn
        end local 5 // java.lang.Class[] tab
        end local 4 // int length
        end local 3 // java.lang.ClassLoader aLoader
        end local 2 // java.lang.ClassLoader loader
        end local 1 // java.lang.String[] signature
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   40     0       this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            0   40     1  signature  [Ljava/lang/String;
            0   40     2     loader  Ljava/lang/ClassLoader;
            2   40     3    aLoader  Ljava/lang/ClassLoader;
            3   40     4     length  I
            4   40     5        tab  [Ljava/lang/Class;
            6   20     6          i  I
            8   18     7    primCla  Ljava/lang/Class;
           22   31     6          e  Ljava/lang/ClassNotFoundException;
           32   39     6          e  Ljava/lang/RuntimeException;
      Exception table:
        from    to  target  type
           5    20      21  Class java.lang.ClassNotFoundException
           5    20      31  Class java.lang.RuntimeException
    Exceptions:
      throws javax.management.ReflectionException
    MethodParameters:
           Name  Flags
      signature  
      loader     

  public java.lang.Object instantiate(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
        start local 1 // java.lang.Class theClass
         0: .line 216
            aload 1 /* theClass */
            aconst_null
            aconst_null
            ldc "instantiate"
            invokestatic com.sun.jmx.mbeanserver.MBeanInstantiator.checkMBeanPermission:(Ljava/lang/Class;Ljava/lang/String;Ljavax/management/ObjectName;Ljava/lang/String;)V
         1: .line 218
            aconst_null
            astore 2 /* moi */
        start local 2 // java.lang.Object moi
         2: .line 222
            aload 0 /* this */
            aload 1 /* theClass */
            aconst_null
            invokevirtual com.sun.jmx.mbeanserver.MBeanInstantiator.findConstructor:(Ljava/lang/Class;[Ljava/lang/Class;)Ljava/lang/reflect/Constructor;
            astore 3 /* cons */
        start local 3 // java.lang.reflect.Constructor cons
         3: .line 223
            aload 3 /* cons */
            ifnonnull 7
         4: .line 224
            new javax.management.ReflectionException
            dup
         5: .line 225
            new java.lang.NoSuchMethodException
            dup
            ldc "No such constructor"
         6: .line 224
            invokespecial java.lang.NoSuchMethodException.<init>:(Ljava/lang/String;)V
            invokespecial javax.management.ReflectionException.<init>:(Ljava/lang/Exception;)V
            athrow
         7: .line 229
      StackMap locals: java.lang.Object java.lang.reflect.Constructor
      StackMap stack:
            aload 1 /* theClass */
            invokestatic sun.reflect.misc.ReflectUtil.checkPackageAccess:(Ljava/lang/Class;)V
         8: .line 230
            aload 1 /* theClass */
            invokestatic sun.reflect.misc.ReflectUtil.ensureClassAccess:(Ljava/lang/Class;)V
         9: .line 231
            aload 3 /* cons */
            iconst_0
            anewarray java.lang.Object
            invokevirtual java.lang.reflect.Constructor.newInstance:([Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* moi */
        10: .line 232
            goto 42
      StackMap locals:
      StackMap stack: java.lang.reflect.InvocationTargetException
        11: astore 4 /* e */
        start local 4 // java.lang.reflect.InvocationTargetException e
        12: .line 234
            aload 4 /* e */
            invokevirtual java.lang.reflect.InvocationTargetException.getTargetException:()Ljava/lang/Throwable;
            astore 5 /* t */
        start local 5 // java.lang.Throwable t
        13: .line 235
            aload 5 /* t */
            instanceof java.lang.RuntimeException
            ifeq 17
        14: .line 236
            new javax.management.RuntimeMBeanException
            dup
            aload 5 /* t */
            checkcast java.lang.RuntimeException
        15: .line 237
            ldc "RuntimeException thrown in the MBean's empty constructor"
        16: .line 236
            invokespecial javax.management.RuntimeMBeanException.<init>:(Ljava/lang/RuntimeException;Ljava/lang/String;)V
            athrow
        17: .line 238
      StackMap locals: java.lang.reflect.InvocationTargetException java.lang.Throwable
      StackMap stack:
            aload 5 /* t */
            instanceof java.lang.Error
            ifeq 21
        18: .line 239
            new javax.management.RuntimeErrorException
            dup
            aload 5 /* t */
            checkcast java.lang.Error
        19: .line 240
            ldc "Error thrown in the MBean's empty constructor"
        20: .line 239
            invokespecial javax.management.RuntimeErrorException.<init>:(Ljava/lang/Error;Ljava/lang/String;)V
            athrow
        21: .line 242
      StackMap locals:
      StackMap stack:
            new javax.management.MBeanException
            dup
            aload 5 /* t */
            checkcast java.lang.Exception
        22: .line 243
            ldc "Exception thrown in the MBean's empty constructor"
        23: .line 242
            invokespecial javax.management.MBeanException.<init>:(Ljava/lang/Exception;Ljava/lang/String;)V
            athrow
        end local 5 // java.lang.Throwable t
        end local 4 // java.lang.reflect.InvocationTargetException e
        24: .line 245
      StackMap locals: com.sun.jmx.mbeanserver.MBeanInstantiator java.lang.Class java.lang.Object java.lang.reflect.Constructor
      StackMap stack: java.lang.NoSuchMethodError
            pop
        25: .line 246
            new javax.management.ReflectionException
            dup
        26: .line 247
            new java.lang.NoSuchMethodException
            dup
            ldc "No constructor"
        27: .line 246
            invokespecial java.lang.NoSuchMethodException.<init>:(Ljava/lang/String;)V
        28: .line 248
            ldc "No such constructor"
        29: .line 246
            invokespecial javax.management.ReflectionException.<init>:(Ljava/lang/Exception;Ljava/lang/String;)V
            athrow
        30: .line 249
      StackMap locals:
      StackMap stack: java.lang.InstantiationException
            astore 4 /* e */
        start local 4 // java.lang.InstantiationException e
        31: .line 250
            new javax.management.ReflectionException
            dup
            aload 4 /* e */
        32: .line 251
            ldc "Exception thrown trying to invoke the MBean's empty constructor"
        33: .line 250
            invokespecial javax.management.ReflectionException.<init>:(Ljava/lang/Exception;Ljava/lang/String;)V
            athrow
        end local 4 // java.lang.InstantiationException e
        34: .line 252
      StackMap locals:
      StackMap stack: java.lang.IllegalAccessException
            astore 4 /* e */
        start local 4 // java.lang.IllegalAccessException e
        35: .line 253
            new javax.management.ReflectionException
            dup
            aload 4 /* e */
        36: .line 254
            ldc "Exception thrown trying to invoke the MBean's empty constructor"
        37: .line 253
            invokespecial javax.management.ReflectionException.<init>:(Ljava/lang/Exception;Ljava/lang/String;)V
            athrow
        end local 4 // java.lang.IllegalAccessException e
        38: .line 255
      StackMap locals:
      StackMap stack: java.lang.IllegalArgumentException
            astore 4 /* e */
        start local 4 // java.lang.IllegalArgumentException e
        39: .line 256
            new javax.management.ReflectionException
            dup
            aload 4 /* e */
        40: .line 257
            ldc "Exception thrown trying to invoke the MBean's empty constructor"
        41: .line 256
            invokespecial javax.management.ReflectionException.<init>:(Ljava/lang/Exception;Ljava/lang/String;)V
            athrow
        end local 4 // java.lang.IllegalArgumentException e
        42: .line 259
      StackMap locals:
      StackMap stack:
            aload 2 /* moi */
            areturn
        end local 3 // java.lang.reflect.Constructor cons
        end local 2 // java.lang.Object moi
        end local 1 // java.lang.Class theClass
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   43     0      this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            0   43     1  theClass  Ljava/lang/Class;
            2   43     2       moi  Ljava/lang/Object;
            3   43     3      cons  Ljava/lang/reflect/Constructor;
           12   24     4         e  Ljava/lang/reflect/InvocationTargetException;
           13   24     5         t  Ljava/lang/Throwable;
           31   34     4         e  Ljava/lang/InstantiationException;
           35   38     4         e  Ljava/lang/IllegalAccessException;
           39   42     4         e  Ljava/lang/IllegalArgumentException;
      Exception table:
        from    to  target  type
           7    10      11  Class java.lang.reflect.InvocationTargetException
           7    10      24  Class java.lang.NoSuchMethodError
           7    10      30  Class java.lang.InstantiationException
           7    10      34  Class java.lang.IllegalAccessException
           7    10      38  Class java.lang.IllegalArgumentException
    Exceptions:
      throws javax.management.ReflectionException, javax.management.MBeanException
    MethodParameters:
          Name  Flags
      theClass  

  public java.lang.Object instantiate(java.lang.Class, java.lang.Object[], java.lang.String[], java.lang.ClassLoader);
    descriptor: (Ljava/lang/Class;[Ljava/lang/Object;[Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=10, args_size=5
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
        start local 1 // java.lang.Class theClass
        start local 2 // java.lang.Object[] params
        start local 3 // java.lang.String[] signature
        start local 4 // java.lang.ClassLoader loader
         0: .line 274
            aload 1 /* theClass */
            aconst_null
            aconst_null
            ldc "instantiate"
            invokestatic com.sun.jmx.mbeanserver.MBeanInstantiator.checkMBeanPermission:(Ljava/lang/Class;Ljava/lang/String;Ljavax/management/ObjectName;Ljava/lang/String;)V
         1: .line 280
            aconst_null
            astore 6 /* moi */
        start local 6 // java.lang.Object moi
         2: .line 284
            aload 1 /* theClass */
            invokevirtual java.lang.Class.getClassLoader:()Ljava/lang/ClassLoader;
            astore 7 /* aLoader */
        start local 7 // java.lang.ClassLoader aLoader
         3: .line 288
            aload 3 /* signature */
            ifnonnull 4
            aconst_null
            goto 5
         4: .line 289
      StackMap locals: com.sun.jmx.mbeanserver.MBeanInstantiator java.lang.Class java.lang.Object[] java.lang.String[] java.lang.ClassLoader top java.lang.Object java.lang.ClassLoader
      StackMap stack:
            aload 0 /* this */
            aload 3 /* signature */
            aload 7 /* aLoader */
            invokevirtual com.sun.jmx.mbeanserver.MBeanInstantiator.findSignatureClasses:([Ljava/lang/String;Ljava/lang/ClassLoader;)[Ljava/lang/Class;
         5: .line 287
      StackMap locals:
      StackMap stack: java.lang.Class[]
            astore 5 /* tab */
        end local 7 // java.lang.ClassLoader aLoader
        start local 5 // java.lang.Class[] tab
         6: .line 290
            goto 11
        end local 5 // java.lang.Class[] tab
         7: .line 292
      StackMap locals: com.sun.jmx.mbeanserver.MBeanInstantiator java.lang.Class java.lang.Object[] java.lang.String[] java.lang.ClassLoader top java.lang.Object
      StackMap stack: java.lang.IllegalArgumentException
            astore 7 /* e */
        start local 7 // java.lang.IllegalArgumentException e
         8: .line 293
            new javax.management.ReflectionException
            dup
            aload 7 /* e */
         9: .line 294
            ldc "The constructor parameter classes could not be loaded"
        10: .line 293
            invokespecial javax.management.ReflectionException.<init>:(Ljava/lang/Exception;Ljava/lang/String;)V
            athrow
        end local 7 // java.lang.IllegalArgumentException e
        start local 5 // java.lang.Class[] tab
        11: .line 298
      StackMap locals: com.sun.jmx.mbeanserver.MBeanInstantiator java.lang.Class java.lang.Object[] java.lang.String[] java.lang.ClassLoader java.lang.Class[] java.lang.Object
      StackMap stack:
            aconst_null
            astore 7 /* cons */
        start local 7 // java.lang.reflect.Constructor cons
        12: .line 299
            aload 0 /* this */
            aload 1 /* theClass */
            aload 5 /* tab */
            invokevirtual com.sun.jmx.mbeanserver.MBeanInstantiator.findConstructor:(Ljava/lang/Class;[Ljava/lang/Class;)Ljava/lang/reflect/Constructor;
            astore 7 /* cons */
        13: .line 301
            aload 7 /* cons */
            ifnonnull 17
        14: .line 302
            new javax.management.ReflectionException
            dup
        15: .line 303
            new java.lang.NoSuchMethodException
            dup
            ldc "No such constructor"
        16: .line 302
            invokespecial java.lang.NoSuchMethodException.<init>:(Ljava/lang/String;)V
            invokespecial javax.management.ReflectionException.<init>:(Ljava/lang/Exception;)V
            athrow
        17: .line 306
      StackMap locals: java.lang.reflect.Constructor
      StackMap stack:
            aload 1 /* theClass */
            invokestatic sun.reflect.misc.ReflectUtil.checkPackageAccess:(Ljava/lang/Class;)V
        18: .line 307
            aload 1 /* theClass */
            invokestatic sun.reflect.misc.ReflectUtil.ensureClassAccess:(Ljava/lang/Class;)V
        19: .line 308
            aload 7 /* cons */
            aload 2 /* params */
            invokevirtual java.lang.reflect.Constructor.newInstance:([Ljava/lang/Object;)Ljava/lang/Object;
            astore 6 /* moi */
        20: .line 309
            goto 48
        21: .line 310
      StackMap locals:
      StackMap stack: java.lang.NoSuchMethodError
            pop
        22: .line 311
            new javax.management.ReflectionException
            dup
        23: .line 312
            new java.lang.NoSuchMethodException
            dup
            ldc "No such constructor found"
        24: .line 311
            invokespecial java.lang.NoSuchMethodException.<init>:(Ljava/lang/String;)V
        25: .line 313
            ldc "No such constructor"
        26: .line 311
            invokespecial javax.management.ReflectionException.<init>:(Ljava/lang/Exception;Ljava/lang/String;)V
            athrow
        27: .line 315
      StackMap locals:
      StackMap stack: java.lang.InstantiationException
            astore 8 /* e */
        start local 8 // java.lang.InstantiationException e
        28: .line 316
            new javax.management.ReflectionException
            dup
            aload 8 /* e */
        29: .line 317
            ldc "Exception thrown trying to invoke the MBean's constructor"
        30: .line 316
            invokespecial javax.management.ReflectionException.<init>:(Ljava/lang/Exception;Ljava/lang/String;)V
            athrow
        end local 8 // java.lang.InstantiationException e
        31: .line 319
      StackMap locals:
      StackMap stack: java.lang.IllegalAccessException
            astore 8 /* e */
        start local 8 // java.lang.IllegalAccessException e
        32: .line 320
            new javax.management.ReflectionException
            dup
            aload 8 /* e */
        33: .line 321
            ldc "Exception thrown trying to invoke the MBean's constructor"
        34: .line 320
            invokespecial javax.management.ReflectionException.<init>:(Ljava/lang/Exception;Ljava/lang/String;)V
            athrow
        end local 8 // java.lang.IllegalAccessException e
        35: .line 323
      StackMap locals:
      StackMap stack: java.lang.reflect.InvocationTargetException
            astore 8 /* e */
        start local 8 // java.lang.reflect.InvocationTargetException e
        36: .line 325
            aload 8 /* e */
            invokevirtual java.lang.reflect.InvocationTargetException.getTargetException:()Ljava/lang/Throwable;
            astore 9 /* th */
        start local 9 // java.lang.Throwable th
        37: .line 326
            aload 9 /* th */
            instanceof java.lang.RuntimeException
            ifeq 41
        38: .line 327
            new javax.management.RuntimeMBeanException
            dup
            aload 9 /* th */
            checkcast java.lang.RuntimeException
        39: .line 328
            ldc "RuntimeException thrown in the MBean's constructor"
        40: .line 327
            invokespecial javax.management.RuntimeMBeanException.<init>:(Ljava/lang/RuntimeException;Ljava/lang/String;)V
            athrow
        41: .line 329
      StackMap locals: java.lang.reflect.InvocationTargetException java.lang.Throwable
      StackMap stack:
            aload 9 /* th */
            instanceof java.lang.Error
            ifeq 45
        42: .line 330
            new javax.management.RuntimeErrorException
            dup
            aload 9 /* th */
            checkcast java.lang.Error
        43: .line 331
            ldc "Error thrown in the MBean's constructor"
        44: .line 330
            invokespecial javax.management.RuntimeErrorException.<init>:(Ljava/lang/Error;Ljava/lang/String;)V
            athrow
        45: .line 333
      StackMap locals:
      StackMap stack:
            new javax.management.MBeanException
            dup
            aload 9 /* th */
            checkcast java.lang.Exception
        46: .line 334
            ldc "Exception thrown in the MBean's constructor"
        47: .line 333
            invokespecial javax.management.MBeanException.<init>:(Ljava/lang/Exception;Ljava/lang/String;)V
            athrow
        end local 9 // java.lang.Throwable th
        end local 8 // java.lang.reflect.InvocationTargetException e
        48: .line 337
      StackMap locals:
      StackMap stack:
            aload 6 /* moi */
            areturn
        end local 7 // java.lang.reflect.Constructor cons
        end local 6 // java.lang.Object moi
        end local 5 // java.lang.Class[] tab
        end local 4 // java.lang.ClassLoader loader
        end local 3 // java.lang.String[] signature
        end local 2 // java.lang.Object[] params
        end local 1 // java.lang.Class theClass
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   49     0       this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            0   49     1   theClass  Ljava/lang/Class;
            0   49     2     params  [Ljava/lang/Object;
            0   49     3  signature  [Ljava/lang/String;
            0   49     4     loader  Ljava/lang/ClassLoader;
            6    7     5        tab  [Ljava/lang/Class;
           11   49     5        tab  [Ljava/lang/Class;
            2   49     6        moi  Ljava/lang/Object;
            3    6     7    aLoader  Ljava/lang/ClassLoader;
            8   11     7          e  Ljava/lang/IllegalArgumentException;
           12   49     7       cons  Ljava/lang/reflect/Constructor;
           28   31     8          e  Ljava/lang/InstantiationException;
           32   35     8          e  Ljava/lang/IllegalAccessException;
           36   48     8          e  Ljava/lang/reflect/InvocationTargetException;
           37   48     9         th  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           2     6       7  Class java.lang.IllegalArgumentException
          17    20      21  Class java.lang.NoSuchMethodError
          17    20      27  Class java.lang.InstantiationException
          17    20      31  Class java.lang.IllegalAccessException
          17    20      35  Class java.lang.reflect.InvocationTargetException
    Exceptions:
      throws javax.management.ReflectionException, javax.management.MBeanException
    MethodParameters:
           Name  Flags
      theClass   
      params     
      signature  
      loader     

  public java.io.ObjectInputStream deserialize(java.lang.ClassLoader, byte[]);
    descriptor: (Ljava/lang/ClassLoader;[B)Ljava/io/ObjectInputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
        start local 1 // java.lang.ClassLoader loader
        start local 2 // byte[] data
         0: .line 355
            aload 2 /* data */
            ifnonnull 6
         1: .line 356
            new javax.management.RuntimeOperationsException
            dup
         2: .line 357
            new java.lang.IllegalArgumentException
            dup
         3: .line 356
            invokespecial java.lang.IllegalArgumentException.<init>:()V
         4: .line 357
            ldc "Null data passed in parameter"
         5: .line 356
            invokespecial javax.management.RuntimeOperationsException.<init>:(Ljava/lang/RuntimeException;Ljava/lang/String;)V
            athrow
         6: .line 359
      StackMap locals:
      StackMap stack:
            aload 2 /* data */
            arraylength
            ifne 12
         7: .line 360
            new javax.management.RuntimeOperationsException
            dup
         8: .line 361
            new java.lang.IllegalArgumentException
            dup
         9: .line 360
            invokespecial java.lang.IllegalArgumentException.<init>:()V
        10: .line 361
            ldc "Empty data passed in parameter"
        11: .line 360
            invokespecial javax.management.RuntimeOperationsException.<init>:(Ljava/lang/RuntimeException;Ljava/lang/String;)V
            athrow
        12: .line 368
      StackMap locals:
      StackMap stack:
            new java.io.ByteArrayInputStream
            dup
            aload 2 /* data */
            invokespecial java.io.ByteArrayInputStream.<init>:([B)V
            astore 3 /* bIn */
        start local 3 // java.io.ByteArrayInputStream bIn
        13: .line 370
            new com.sun.jmx.mbeanserver.ObjectInputStreamWithLoader
            dup
            aload 3 /* bIn */
            aload 1 /* loader */
            invokespecial com.sun.jmx.mbeanserver.ObjectInputStreamWithLoader.<init>:(Ljava/io/InputStream;Ljava/lang/ClassLoader;)V
            astore 4 /* objIn */
        start local 4 // java.io.ObjectInputStream objIn
        14: .line 371
            goto 19
        end local 4 // java.io.ObjectInputStream objIn
      StackMap locals: com.sun.jmx.mbeanserver.MBeanInstantiator java.lang.ClassLoader byte[] java.io.ByteArrayInputStream
      StackMap stack: java.io.IOException
        15: pop
        16: .line 372
            new javax.management.OperationsException
            dup
        17: .line 373
            ldc "An IOException occurred trying to de-serialize the data"
        18: .line 372
            invokespecial javax.management.OperationsException.<init>:(Ljava/lang/String;)V
            athrow
        start local 4 // java.io.ObjectInputStream objIn
        19: .line 376
      StackMap locals: java.io.ObjectInputStream
      StackMap stack:
            aload 4 /* objIn */
            areturn
        end local 4 // java.io.ObjectInputStream objIn
        end local 3 // java.io.ByteArrayInputStream bIn
        end local 2 // byte[] data
        end local 1 // java.lang.ClassLoader loader
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   20     0    this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            0   20     1  loader  Ljava/lang/ClassLoader;
            0   20     2    data  [B
           13   20     3     bIn  Ljava/io/ByteArrayInputStream;
           14   15     4   objIn  Ljava/io/ObjectInputStream;
           19   20     4   objIn  Ljava/io/ObjectInputStream;
      Exception table:
        from    to  target  type
          13    14      15  Class java.io.IOException
    Exceptions:
      throws javax.management.OperationsException
    MethodParameters:
        Name  Flags
      loader  
      data    

  public java.io.ObjectInputStream deserialize(java.lang.String, javax.management.ObjectName, byte[], java.lang.ClassLoader);
    descriptor: (Ljava/lang/String;Ljavax/management/ObjectName;[BLjava/lang/ClassLoader;)Ljava/io/ObjectInputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=5
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
        start local 1 // java.lang.String className
        start local 2 // javax.management.ObjectName loaderName
        start local 3 // byte[] data
        start local 4 // java.lang.ClassLoader loader
         0: .line 412
            aload 3 /* data */
            ifnonnull 6
         1: .line 413
            new javax.management.RuntimeOperationsException
            dup
         2: .line 414
            new java.lang.IllegalArgumentException
            dup
         3: .line 413
            invokespecial java.lang.IllegalArgumentException.<init>:()V
         4: .line 414
            ldc "Null data passed in parameter"
         5: .line 413
            invokespecial javax.management.RuntimeOperationsException.<init>:(Ljava/lang/RuntimeException;Ljava/lang/String;)V
            athrow
         6: .line 416
      StackMap locals:
      StackMap stack:
            aload 3 /* data */
            arraylength
            ifne 12
         7: .line 417
            new javax.management.RuntimeOperationsException
            dup
         8: .line 418
            new java.lang.IllegalArgumentException
            dup
         9: .line 417
            invokespecial java.lang.IllegalArgumentException.<init>:()V
        10: .line 418
            ldc "Empty data passed in parameter"
        11: .line 417
            invokespecial javax.management.RuntimeOperationsException.<init>:(Ljava/lang/RuntimeException;Ljava/lang/String;)V
            athrow
        12: .line 420
      StackMap locals:
      StackMap stack:
            aload 1 /* className */
            ifnonnull 18
        13: .line 421
            new javax.management.RuntimeOperationsException
            dup
        14: .line 422
            new java.lang.IllegalArgumentException
            dup
        15: .line 421
            invokespecial java.lang.IllegalArgumentException.<init>:()V
        16: .line 422
            ldc "Null className passed in parameter"
        17: .line 421
            invokespecial javax.management.RuntimeOperationsException.<init>:(Ljava/lang/RuntimeException;Ljava/lang/String;)V
            athrow
        18: .line 425
      StackMap locals:
      StackMap stack:
            aload 1 /* className */
            invokestatic sun.reflect.misc.ReflectUtil.checkPackageAccess:(Ljava/lang/String;)V
        19: .line 426
            aconst_null
            astore 5 /* theClass */
        start local 5 // java.lang.Class theClass
        20: .line 427
            aload 2 /* loaderName */
            ifnonnull 23
        21: .line 429
            aload 0 /* this */
            aload 1 /* className */
            aload 4 /* loader */
            invokevirtual com.sun.jmx.mbeanserver.MBeanInstantiator.findClass:(Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/Class;
            astore 5 /* theClass */
        22: .line 431
            goto 35
        23: .line 434
      StackMap locals: java.lang.Class
      StackMap stack:
            aconst_null
            astore 6 /* instance */
        start local 6 // java.lang.ClassLoader instance
        24: .line 436
            aload 0 /* this */
            aload 2 /* loaderName */
            invokevirtual com.sun.jmx.mbeanserver.MBeanInstantiator.getClassLoader:(Ljavax/management/ObjectName;)Ljava/lang/ClassLoader;
            astore 6 /* instance */
        25: .line 437
            aload 6 /* instance */
            ifnonnull 27
        26: .line 438
            new java.lang.ClassNotFoundException
            dup
            aload 1 /* className */
            invokespecial java.lang.ClassNotFoundException.<init>:(Ljava/lang/String;)V
            athrow
        27: .line 439
      StackMap locals: java.lang.ClassLoader
      StackMap stack:
            aload 1 /* className */
            iconst_0
            aload 6 /* instance */
            invokestatic java.lang.Class.forName:(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;
            astore 5 /* theClass */
        end local 6 // java.lang.ClassLoader instance
        28: .line 440
            goto 35
        29: .line 441
      StackMap locals: com.sun.jmx.mbeanserver.MBeanInstantiator java.lang.String javax.management.ObjectName byte[] java.lang.ClassLoader java.lang.Class
      StackMap stack: java.lang.ClassNotFoundException
            astore 6 /* e */
        start local 6 // java.lang.ClassNotFoundException e
        30: .line 442
            new javax.management.ReflectionException
            dup
            aload 6 /* e */
        31: .line 443
            new java.lang.StringBuilder
            dup
            ldc "The MBean class could not be loaded by the "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        32: .line 444
            aload 2 /* loaderName */
            invokevirtual javax.management.ObjectName.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " class loader"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        33: .line 443
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        34: .line 442
            invokespecial javax.management.ReflectionException.<init>:(Ljava/lang/Exception;Ljava/lang/String;)V
            athrow
        end local 6 // java.lang.ClassNotFoundException e
        35: .line 452
      StackMap locals:
      StackMap stack:
            new java.io.ByteArrayInputStream
            dup
            aload 3 /* data */
            invokespecial java.io.ByteArrayInputStream.<init>:([B)V
            astore 6 /* bIn */
        start local 6 // java.io.ByteArrayInputStream bIn
        36: .line 454
            new com.sun.jmx.mbeanserver.ObjectInputStreamWithLoader
            dup
            aload 6 /* bIn */
        37: .line 455
            aload 5 /* theClass */
            invokevirtual java.lang.Class.getClassLoader:()Ljava/lang/ClassLoader;
        38: .line 454
            invokespecial com.sun.jmx.mbeanserver.ObjectInputStreamWithLoader.<init>:(Ljava/io/InputStream;Ljava/lang/ClassLoader;)V
            astore 7 /* objIn */
        start local 7 // java.io.ObjectInputStream objIn
        39: .line 456
            goto 44
        end local 7 // java.io.ObjectInputStream objIn
      StackMap locals: com.sun.jmx.mbeanserver.MBeanInstantiator java.lang.String javax.management.ObjectName byte[] java.lang.ClassLoader java.lang.Class java.io.ByteArrayInputStream
      StackMap stack: java.io.IOException
        40: pop
        41: .line 457
            new javax.management.OperationsException
            dup
        42: .line 458
            ldc "An IOException occurred trying to de-serialize the data"
        43: .line 457
            invokespecial javax.management.OperationsException.<init>:(Ljava/lang/String;)V
            athrow
        start local 7 // java.io.ObjectInputStream objIn
        44: .line 461
      StackMap locals: java.io.ObjectInputStream
      StackMap stack:
            aload 7 /* objIn */
            areturn
        end local 7 // java.io.ObjectInputStream objIn
        end local 6 // java.io.ByteArrayInputStream bIn
        end local 5 // java.lang.Class theClass
        end local 4 // java.lang.ClassLoader loader
        end local 3 // byte[] data
        end local 2 // javax.management.ObjectName loaderName
        end local 1 // java.lang.String className
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   45     0        this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            0   45     1   className  Ljava/lang/String;
            0   45     2  loaderName  Ljavax/management/ObjectName;
            0   45     3        data  [B
            0   45     4      loader  Ljava/lang/ClassLoader;
           20   45     5    theClass  Ljava/lang/Class;
           24   28     6    instance  Ljava/lang/ClassLoader;
           30   35     6           e  Ljava/lang/ClassNotFoundException;
           36   45     6         bIn  Ljava/io/ByteArrayInputStream;
           39   40     7       objIn  Ljava/io/ObjectInputStream;
           44   45     7       objIn  Ljava/io/ObjectInputStream;
      Exception table:
        from    to  target  type
          23    28      29  Class java.lang.ClassNotFoundException
          36    39      40  Class java.io.IOException
    Exceptions:
      throws javax.management.InstanceNotFoundException, javax.management.OperationsException, javax.management.ReflectionException
    MethodParameters:
            Name  Flags
      className   
      loaderName  
      data        
      loader      

  public java.lang.Object instantiate(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
        start local 1 // java.lang.String className
         0: .line 491
            aload 0 /* this */
            aload 1 /* className */
            aconst_null
            aconst_null
            aconst_null
            invokevirtual com.sun.jmx.mbeanserver.MBeanInstantiator.instantiate:(Ljava/lang/String;[Ljava/lang/Object;[Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.String className
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            0    1     1  className  Ljava/lang/String;
    Exceptions:
      throws javax.management.ReflectionException, javax.management.MBeanException
    MethodParameters:
           Name  Flags
      className  

  public java.lang.Object instantiate(java.lang.String, javax.management.ObjectName, java.lang.ClassLoader);
    descriptor: (Ljava/lang/String;Ljavax/management/ObjectName;Ljava/lang/ClassLoader;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
        start local 1 // java.lang.String className
        start local 2 // javax.management.ObjectName loaderName
        start local 3 // java.lang.ClassLoader loader
         0: .line 527
            aload 0 /* this */
            aload 1 /* className */
            aload 2 /* loaderName */
            aconst_null
         1: .line 528
            aconst_null
            aload 3 /* loader */
         2: .line 527
            invokevirtual com.sun.jmx.mbeanserver.MBeanInstantiator.instantiate:(Ljava/lang/String;Ljavax/management/ObjectName;[Ljava/lang/Object;[Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/Object;
            areturn
        end local 3 // java.lang.ClassLoader loader
        end local 2 // javax.management.ObjectName loaderName
        end local 1 // java.lang.String className
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            0    3     1   className  Ljava/lang/String;
            0    3     2  loaderName  Ljavax/management/ObjectName;
            0    3     3      loader  Ljava/lang/ClassLoader;
    Exceptions:
      throws javax.management.ReflectionException, javax.management.MBeanException, javax.management.InstanceNotFoundException
    MethodParameters:
            Name  Flags
      className   
      loaderName  
      loader      

  public java.lang.Object instantiate(java.lang.String, java.lang.Object[], java.lang.String[], java.lang.ClassLoader);
    descriptor: (Ljava/lang/String;[Ljava/lang/Object;[Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=5
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
        start local 1 // java.lang.String className
        start local 2 // java.lang.Object[] params
        start local 3 // java.lang.String[] signature
        start local 4 // java.lang.ClassLoader loader
         0: .line 565
            aload 0 /* this */
            aload 1 /* className */
            invokevirtual com.sun.jmx.mbeanserver.MBeanInstantiator.findClassWithDefaultLoaderRepository:(Ljava/lang/String;)Ljava/lang/Class;
            astore 5 /* theClass */
        start local 5 // java.lang.Class theClass
         1: .line 566
            aload 0 /* this */
            aload 5 /* theClass */
            aload 2 /* params */
            aload 3 /* signature */
            aload 4 /* loader */
            invokevirtual com.sun.jmx.mbeanserver.MBeanInstantiator.instantiate:(Ljava/lang/Class;[Ljava/lang/Object;[Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/Object;
            areturn
        end local 5 // java.lang.Class theClass
        end local 4 // java.lang.ClassLoader loader
        end local 3 // java.lang.String[] signature
        end local 2 // java.lang.Object[] params
        end local 1 // java.lang.String className
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            0    2     1  className  Ljava/lang/String;
            0    2     2     params  [Ljava/lang/Object;
            0    2     3  signature  [Ljava/lang/String;
            0    2     4     loader  Ljava/lang/ClassLoader;
            1    2     5   theClass  Ljava/lang/Class;
    Exceptions:
      throws javax.management.ReflectionException, javax.management.MBeanException
    MethodParameters:
           Name  Flags
      className  
      params     
      signature  
      loader     

  public java.lang.Object instantiate(java.lang.String, javax.management.ObjectName, java.lang.Object[], java.lang.String[], java.lang.ClassLoader);
    descriptor: (Ljava/lang/String;Ljavax/management/ObjectName;[Ljava/lang/Object;[Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=6
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
        start local 1 // java.lang.String className
        start local 2 // javax.management.ObjectName loaderName
        start local 3 // java.lang.Object[] params
        start local 4 // java.lang.String[] signature
        start local 5 // java.lang.ClassLoader loader
         0: .line 615
            aload 2 /* loaderName */
            ifnonnull 3
         1: .line 616
            aload 0 /* this */
            aload 1 /* className */
            aload 5 /* loader */
            invokevirtual com.sun.jmx.mbeanserver.MBeanInstantiator.findClass:(Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/Class;
            astore 6 /* theClass */
        start local 6 // java.lang.Class theClass
         2: .line 617
            goto 4
        end local 6 // java.lang.Class theClass
         3: .line 618
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* className */
            aload 2 /* loaderName */
            invokevirtual com.sun.jmx.mbeanserver.MBeanInstantiator.findClass:(Ljava/lang/String;Ljavax/management/ObjectName;)Ljava/lang/Class;
            astore 6 /* theClass */
        start local 6 // java.lang.Class theClass
         4: .line 620
      StackMap locals: java.lang.Class
      StackMap stack:
            aload 0 /* this */
            aload 6 /* theClass */
            aload 3 /* params */
            aload 4 /* signature */
            aload 5 /* loader */
            invokevirtual com.sun.jmx.mbeanserver.MBeanInstantiator.instantiate:(Ljava/lang/Class;[Ljava/lang/Object;[Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/Object;
            areturn
        end local 6 // java.lang.Class theClass
        end local 5 // java.lang.ClassLoader loader
        end local 4 // java.lang.String[] signature
        end local 3 // java.lang.Object[] params
        end local 2 // javax.management.ObjectName loaderName
        end local 1 // java.lang.String className
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            0    5     1   className  Ljava/lang/String;
            0    5     2  loaderName  Ljavax/management/ObjectName;
            0    5     3      params  [Ljava/lang/Object;
            0    5     4   signature  [Ljava/lang/String;
            0    5     5      loader  Ljava/lang/ClassLoader;
            2    3     6    theClass  Ljava/lang/Class;
            4    5     6    theClass  Ljava/lang/Class;
    Exceptions:
      throws javax.management.ReflectionException, javax.management.MBeanException, javax.management.InstanceNotFoundException
    MethodParameters:
            Name  Flags
      className   
      loaderName  
      params      
      signature   
      loader      

  public com.sun.jmx.mbeanserver.ModifiableClassLoaderRepository getClassLoaderRepository();
    descriptor: ()Lcom/sun/jmx/mbeanserver/ModifiableClassLoaderRepository;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
         0: .line 628
            aconst_null
            aconst_null
            aconst_null
            ldc "getClassLoaderRepository"
            invokestatic com.sun.jmx.mbeanserver.MBeanInstantiator.checkMBeanPermission:(Ljava/lang/String;Ljava/lang/String;Ljavax/management/ObjectName;Ljava/lang/String;)V
         1: .line 629
            aload 0 /* this */
            getfield com.sun.jmx.mbeanserver.MBeanInstantiator.clr:Lcom/sun/jmx/mbeanserver/ModifiableClassLoaderRepository;
            areturn
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;

  static java.lang.Class loadClass(java.lang.String, java.lang.ClassLoader);
    descriptor: (Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/Class;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // java.lang.String className
        start local 1 // java.lang.ClassLoader loader
         0: .line 638
            aconst_null
            astore 2 /* theClass */
        start local 2 // java.lang.Class theClass
         1: .line 639
            aload 0 /* className */
            ifnonnull 7
         2: .line 640
            new javax.management.RuntimeOperationsException
            dup
         3: .line 641
            new java.lang.IllegalArgumentException
            dup
            ldc "The class name cannot be null"
         4: .line 640
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
         5: .line 642
            ldc "Exception occurred during object instantiation"
         6: .line 640
            invokespecial javax.management.RuntimeOperationsException.<init>:(Ljava/lang/RuntimeException;Ljava/lang/String;)V
            athrow
         7: .line 644
      StackMap locals: java.lang.Class
      StackMap stack:
            aload 0 /* className */
            invokestatic sun.reflect.misc.ReflectUtil.checkPackageAccess:(Ljava/lang/String;)V
         8: .line 646
            aload 1 /* loader */
            ifnonnull 10
         9: .line 647
            ldc Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            invokevirtual java.lang.Class.getClassLoader:()Ljava/lang/ClassLoader;
            astore 1 /* loader */
        10: .line 648
      StackMap locals:
      StackMap stack:
            aload 1 /* loader */
            ifnull 13
        11: .line 649
            aload 0 /* className */
            iconst_0
            aload 1 /* loader */
            invokestatic java.lang.Class.forName:(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;
            astore 2 /* theClass */
        12: .line 650
            goto 19
        13: .line 651
      StackMap locals:
      StackMap stack:
            aload 0 /* className */
            invokestatic java.lang.Class.forName:(Ljava/lang/String;)Ljava/lang/Class;
            astore 2 /* theClass */
        14: .line 653
            goto 19
      StackMap locals:
      StackMap stack: java.lang.ClassNotFoundException
        15: astore 3 /* e */
        start local 3 // java.lang.ClassNotFoundException e
        16: .line 654
            new javax.management.ReflectionException
            dup
            aload 3 /* e */
        17: .line 655
            ldc "The MBean class could not be loaded by the context classloader"
        18: .line 654
            invokespecial javax.management.ReflectionException.<init>:(Ljava/lang/Exception;Ljava/lang/String;)V
            athrow
        end local 3 // java.lang.ClassNotFoundException e
        19: .line 657
      StackMap locals:
      StackMap stack:
            aload 2 /* theClass */
            areturn
        end local 2 // java.lang.Class theClass
        end local 1 // java.lang.ClassLoader loader
        end local 0 // java.lang.String className
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   20     0  className  Ljava/lang/String;
            0   20     1     loader  Ljava/lang/ClassLoader;
            1   20     2   theClass  Ljava/lang/Class;
           16   19     3          e  Ljava/lang/ClassNotFoundException;
      Exception table:
        from    to  target  type
           8    14      15  Class java.lang.ClassNotFoundException
    Exceptions:
      throws javax.management.ReflectionException
    MethodParameters:
           Name  Flags
      className  
      loader     

  static java.lang.Class[] loadSignatureClasses(java.lang.String[], java.lang.ClassLoader);
    descriptor: ([Ljava/lang/String;Ljava/lang/ClassLoader;)[Ljava/lang/Class;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=7, args_size=2
        start local 0 // java.lang.String[] signature
        start local 1 // java.lang.ClassLoader loader
         0: .line 670
            aload 0 /* signature */
            ifnonnull 1
            aconst_null
            areturn
         1: .line 672
      StackMap locals:
      StackMap stack:
            aload 1 /* loader */
            ifnonnull 2
            ldc Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            invokevirtual java.lang.Class.getClassLoader:()Ljava/lang/ClassLoader;
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 1 /* loader */
         3: .line 671
      StackMap locals:
      StackMap stack: java.lang.ClassLoader
            astore 2 /* aLoader */
        start local 2 // java.lang.ClassLoader aLoader
         4: .line 673
            aload 0 /* signature */
            arraylength
            istore 3 /* length */
        start local 3 // int length
         5: .line 674
            iload 3 /* length */
            anewarray java.lang.Class
            astore 4 /* tab */
        start local 4 // java.lang.Class[] tab
         6: .line 676
            iload 3 /* length */
            ifne 7
            aload 4 /* tab */
            areturn
         7: .line 678
      StackMap locals: java.lang.ClassLoader int java.lang.Class[]
      StackMap stack:
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         8: goto 16
         9: .line 683
      StackMap locals: int
      StackMap stack:
            getstatic com.sun.jmx.mbeanserver.MBeanInstantiator.primitiveClasses:Ljava/util/Map;
            aload 0 /* signature */
            iload 5 /* i */
            aaload
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Class
            astore 6 /* primCla */
        start local 6 // java.lang.Class primCla
        10: .line 684
            aload 6 /* primCla */
            ifnull 13
        11: .line 685
            aload 4 /* tab */
            iload 5 /* i */
            aload 6 /* primCla */
            aastore
        12: .line 686
            goto 15
        13: .line 695
      StackMap locals: java.lang.Class
      StackMap stack:
            aload 0 /* signature */
            iload 5 /* i */
            aaload
            invokestatic sun.reflect.misc.ReflectUtil.checkPackageAccess:(Ljava/lang/String;)V
        14: .line 696
            aload 4 /* tab */
            iload 5 /* i */
            aload 0 /* signature */
            iload 5 /* i */
            aaload
            iconst_0
            aload 2 /* aLoader */
            invokestatic java.lang.Class.forName:(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;
            aastore
        end local 6 // java.lang.Class primCla
        15: .line 678
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 5 /* i */
            iload 3 /* length */
            if_icmplt 9
        end local 5 // int i
        17: .line 698
            goto 36
      StackMap locals: java.lang.String[] java.lang.ClassLoader java.lang.ClassLoader int java.lang.Class[]
      StackMap stack: java.lang.ClassNotFoundException
        18: astore 5 /* e */
        start local 5 // java.lang.ClassNotFoundException e
        19: .line 699
            getstatic com.sun.jmx.defaults.JmxProperties.MBEANSERVER_LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINEST:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 25
        20: .line 700
            getstatic com.sun.jmx.defaults.JmxProperties.MBEANSERVER_LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINEST:Ljava/util/logging/Level;
        21: .line 701
            ldc Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
        22: .line 702
            ldc "findSignatureClasses"
        23: .line 703
            ldc "The parameter class could not be found"
            aload 5 /* e */
        24: .line 700
            invokevirtual java.util.logging.Logger.logp:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V
        25: .line 705
      StackMap locals: java.lang.ClassNotFoundException
      StackMap stack:
            new javax.management.ReflectionException
            dup
            aload 5 /* e */
        26: .line 706
            ldc "The parameter class could not be found"
        27: .line 705
            invokespecial javax.management.ReflectionException.<init>:(Ljava/lang/Exception;Ljava/lang/String;)V
            athrow
        end local 5 // java.lang.ClassNotFoundException e
        28: .line 707
      StackMap locals: java.lang.String[] java.lang.ClassLoader java.lang.ClassLoader int java.lang.Class[]
      StackMap stack: java.lang.RuntimeException
            astore 5 /* e */
        start local 5 // java.lang.RuntimeException e
        29: .line 708
            getstatic com.sun.jmx.defaults.JmxProperties.MBEANSERVER_LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINEST:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 35
        30: .line 709
            getstatic com.sun.jmx.defaults.JmxProperties.MBEANSERVER_LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINEST:Ljava/util/logging/Level;
        31: .line 710
            ldc Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
        32: .line 711
            ldc "findSignatureClasses"
        33: .line 712
            ldc "Unexpected exception"
            aload 5 /* e */
        34: .line 709
            invokevirtual java.util.logging.Logger.logp:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V
        35: .line 714
      StackMap locals: java.lang.RuntimeException
      StackMap stack:
            aload 5 /* e */
            athrow
        end local 5 // java.lang.RuntimeException e
        36: .line 716
      StackMap locals:
      StackMap stack:
            aload 4 /* tab */
            areturn
        end local 4 // java.lang.Class[] tab
        end local 3 // int length
        end local 2 // java.lang.ClassLoader aLoader
        end local 1 // java.lang.ClassLoader loader
        end local 0 // java.lang.String[] signature
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   37     0  signature  [Ljava/lang/String;
            0   37     1     loader  Ljava/lang/ClassLoader;
            4   37     2    aLoader  Ljava/lang/ClassLoader;
            5   37     3     length  I
            6   37     4        tab  [Ljava/lang/Class;
            8   17     5          i  I
           10   15     6    primCla  Ljava/lang/Class;
           19   28     5          e  Ljava/lang/ClassNotFoundException;
           29   36     5          e  Ljava/lang/RuntimeException;
      Exception table:
        from    to  target  type
           7    17      18  Class java.lang.ClassNotFoundException
           7    17      28  Class java.lang.RuntimeException
    Exceptions:
      throws javax.management.ReflectionException
    MethodParameters:
           Name  Flags
      signature  
      loader     

  private java.lang.reflect.Constructor<?> findConstructor(java.lang.Class<?>, java.lang.Class<?>[]);
    descriptor: (Ljava/lang/Class;[Ljava/lang/Class;)Ljava/lang/reflect/Constructor;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
        start local 1 // java.lang.Class c
        start local 2 // java.lang.Class[] params
         0: .line 721
            aload 1 /* c */
            aload 2 /* params */
            invokestatic sun.reflect.misc.ConstructorUtil.getConstructor:(Ljava/lang/Class;[Ljava/lang/Class;)Ljava/lang/reflect/Constructor;
         1: areturn
         2: .line 722
      StackMap locals:
      StackMap stack: java.lang.Exception
            pop
         3: .line 723
            aconst_null
            areturn
        end local 2 // java.lang.Class[] params
        end local 1 // java.lang.Class c
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            0    4     1       c  Ljava/lang/Class<*>;
            0    4     2  params  [Ljava/lang/Class;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Exception
    Signature: (Ljava/lang/Class<*>;[Ljava/lang/Class<*>;)Ljava/lang/reflect/Constructor<*>;
    MethodParameters:
        Name  Flags
      c       
      params  

  private static void checkMBeanPermission(java.lang.Class<?>, java.lang.String, javax.management.ObjectName, java.lang.String);
    descriptor: (Ljava/lang/Class;Ljava/lang/String;Ljavax/management/ObjectName;Ljava/lang/String;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // java.lang.Class clazz
        start local 1 // java.lang.String member
        start local 2 // javax.management.ObjectName objectName
        start local 3 // java.lang.String actions
         0: .line 740
            aload 0 /* clazz */
            ifnull 2
         1: .line 741
            aload 0 /* clazz */
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            aload 1 /* member */
            aload 2 /* objectName */
            aload 3 /* actions */
            invokestatic com.sun.jmx.mbeanserver.MBeanInstantiator.checkMBeanPermission:(Ljava/lang/String;Ljava/lang/String;Ljavax/management/ObjectName;Ljava/lang/String;)V
         2: .line 743
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.String actions
        end local 2 // javax.management.ObjectName objectName
        end local 1 // java.lang.String member
        end local 0 // java.lang.Class clazz
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0       clazz  Ljava/lang/Class<*>;
            0    3     1      member  Ljava/lang/String;
            0    3     2  objectName  Ljavax/management/ObjectName;
            0    3     3     actions  Ljava/lang/String;
    Signature: (Ljava/lang/Class<*>;Ljava/lang/String;Ljavax/management/ObjectName;Ljava/lang/String;)V
    MethodParameters:
            Name  Flags
      clazz       
      member      
      objectName  
      actions     

  private static void checkMBeanPermission(java.lang.String, java.lang.String, javax.management.ObjectName, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljavax/management/ObjectName;Ljava/lang/String;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // java.lang.String classname
        start local 1 // java.lang.String member
        start local 2 // javax.management.ObjectName objectName
        start local 3 // java.lang.String actions
         0: .line 750
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 4 /* sm */
        start local 4 // java.lang.SecurityManager sm
         1: .line 751
            aload 4 /* sm */
            ifnull 8
         2: .line 752
            new javax.management.MBeanPermission
            dup
            aload 0 /* classname */
         3: .line 753
            aload 1 /* member */
         4: .line 754
            aload 2 /* objectName */
         5: .line 755
            aload 3 /* actions */
         6: .line 752
            invokespecial javax.management.MBeanPermission.<init>:(Ljava/lang/String;Ljava/lang/String;Ljavax/management/ObjectName;Ljava/lang/String;)V
            astore 5 /* perm */
        start local 5 // java.security.Permission perm
         7: .line 756
            aload 4 /* sm */
            aload 5 /* perm */
            invokevirtual java.lang.SecurityManager.checkPermission:(Ljava/security/Permission;)V
        end local 5 // java.security.Permission perm
         8: .line 758
      StackMap locals: java.lang.SecurityManager
      StackMap stack:
            return
        end local 4 // java.lang.SecurityManager sm
        end local 3 // java.lang.String actions
        end local 2 // javax.management.ObjectName objectName
        end local 1 // java.lang.String member
        end local 0 // java.lang.String classname
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0   classname  Ljava/lang/String;
            0    9     1      member  Ljava/lang/String;
            0    9     2  objectName  Ljavax/management/ObjectName;
            0    9     3     actions  Ljava/lang/String;
            1    9     4          sm  Ljava/lang/SecurityManager;
            7    8     5        perm  Ljava/security/Permission;
    Exceptions:
      throws java.lang.SecurityException
    MethodParameters:
            Name  Flags
      classname   
      member      
      objectName  
      actions     

  private java.lang.ClassLoader getClassLoader(javax.management.ObjectName);
    descriptor: (Ljavax/management/ObjectName;)Ljava/lang/ClassLoader;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=7, args_size=2
        start local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
        start local 1 // javax.management.ObjectName name
         0: .line 761
            aload 0 /* this */
            getfield com.sun.jmx.mbeanserver.MBeanInstantiator.clr:Lcom/sun/jmx/mbeanserver/ModifiableClassLoaderRepository;
            ifnonnull 2
         1: .line 762
            aconst_null
            areturn
         2: .line 765
      StackMap locals:
      StackMap stack:
            new java.security.Permissions
            dup
            invokespecial java.security.Permissions.<init>:()V
            astore 2 /* permissions */
        start local 2 // java.security.Permissions permissions
         3: .line 766
            aload 2 /* permissions */
            new javax.management.MBeanPermission
            dup
            ldc "*"
            aconst_null
            aload 1 /* name */
            ldc "getClassLoader"
            invokespecial javax.management.MBeanPermission.<init>:(Ljava/lang/String;Ljava/lang/String;Ljavax/management/ObjectName;Ljava/lang/String;)V
            invokevirtual java.security.Permissions.add:(Ljava/security/Permission;)V
         4: .line 767
            new java.security.ProtectionDomain
            dup
            aconst_null
            aload 2 /* permissions */
            invokespecial java.security.ProtectionDomain.<init>:(Ljava/security/CodeSource;Ljava/security/PermissionCollection;)V
            astore 3 /* protectionDomain */
        start local 3 // java.security.ProtectionDomain protectionDomain
         5: .line 768
            iconst_1
            anewarray java.security.ProtectionDomain
            dup
            iconst_0
            aload 3 /* protectionDomain */
            aastore
            astore 4 /* domains */
        start local 4 // java.security.ProtectionDomain[] domains
         6: .line 769
            new java.security.AccessControlContext
            dup
            aload 4 /* domains */
            invokespecial java.security.AccessControlContext.<init>:([Ljava/security/ProtectionDomain;)V
            astore 5 /* ctx */
        start local 5 // java.security.AccessControlContext ctx
         7: .line 770
            new com.sun.jmx.mbeanserver.MBeanInstantiator$1
            dup
            aload 0 /* this */
            aload 1 /* name */
            invokespecial com.sun.jmx.mbeanserver.MBeanInstantiator$1.<init>:(Lcom/sun/jmx/mbeanserver/MBeanInstantiator;Ljavax/management/ObjectName;)V
         8: .line 774
            aload 5 /* ctx */
         9: .line 770
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;
            checkcast java.lang.ClassLoader
            astore 6 /* loader */
        start local 6 // java.lang.ClassLoader loader
        10: .line 775
            aload 6 /* loader */
            areturn
        end local 6 // java.lang.ClassLoader loader
        end local 5 // java.security.AccessControlContext ctx
        end local 4 // java.security.ProtectionDomain[] domains
        end local 3 // java.security.ProtectionDomain protectionDomain
        end local 2 // java.security.Permissions permissions
        end local 1 // javax.management.ObjectName name
        end local 0 // com.sun.jmx.mbeanserver.MBeanInstantiator this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   11     0              this  Lcom/sun/jmx/mbeanserver/MBeanInstantiator;
            0   11     1              name  Ljavax/management/ObjectName;
            3   11     2       permissions  Ljava/security/Permissions;
            5   11     3  protectionDomain  Ljava/security/ProtectionDomain;
            6   11     4           domains  [Ljava/security/ProtectionDomain;
            7   11     5               ctx  Ljava/security/AccessControlContext;
           10   11     6            loader  Ljava/lang/ClassLoader;
    MethodParameters:
      Name  Flags
      name  final
}
SourceFile: "MBeanInstantiator.java"
NestMembers:
  com.sun.jmx.mbeanserver.MBeanInstantiator$1
InnerClasses:
  com.sun.jmx.mbeanserver.MBeanInstantiator$1