public class com.sun.org.apache.xml.internal.security.Init
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.org.apache.xml.internal.security.Init
  super_class: java.lang.Object
{
  public static final java.lang.String CONF_NS;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "http://www.xmlsecurity.org/NS/#configuration"

  private static java.util.logging.Logger log;
    descriptor: Ljava/util/logging/Logger;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private static boolean alreadyInitialized;
    descriptor: Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 66
            ldc Lcom/sun/org/apache/xml/internal/security/Init;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokestatic java.util.logging.Logger.getLogger:(Ljava/lang/String;)Ljava/util/logging/Logger;
         1: .line 65
            putstatic com.sun.org.apache.xml.internal.security.Init.log:Ljava/util/logging/Logger;
         2: .line 69
            iconst_0
            putstatic com.sun.org.apache.xml.internal.security.Init.alreadyInitialized:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xml.internal.security.Init this
         0: .line 59
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.sun.org.apache.xml.internal.security.Init this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xml/internal/security/Init;

  public static final synchronized boolean isInitialized();
    descriptor: ()Z
    flags: (0x0039) ACC_PUBLIC, ACC_STATIC, ACC_FINAL, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=0, args_size=0
         0: .line 76
            getstatic com.sun.org.apache.xml.internal.security.Init.alreadyInitialized:Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static synchronized void init();
    descriptor: ()V
    flags: (0x0029) ACC_PUBLIC, ACC_STATIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=0
         0: .line 84
            getstatic com.sun.org.apache.xml.internal.security.Init.alreadyInitialized:Z
            ifeq 2
         1: .line 85
            return
         2: .line 90
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.xml.internal.security.Init$1
            dup
            invokespecial com.sun.org.apache.xml.internal.security.Init$1.<init>:()V
         3: .line 89
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            checkcast java.io.InputStream
         4: .line 88
            astore 0 /* is */
        start local 0 // java.io.InputStream is
         5: .line 100
            aload 0 /* is */
            ifnonnull 8
         6: .line 101
            invokestatic com.sun.org.apache.xml.internal.security.Init.dynamicInit:()V
         7: .line 102
            goto 9
         8: .line 103
      StackMap locals: java.io.InputStream
      StackMap stack:
            aload 0 /* is */
            invokestatic com.sun.org.apache.xml.internal.security.Init.fileInit:(Ljava/io/InputStream;)V
         9: .line 106
      StackMap locals:
      StackMap stack:
            iconst_1
            putstatic com.sun.org.apache.xml.internal.security.Init.alreadyInitialized:Z
        10: .line 107
            return
        end local 0 // java.io.InputStream is
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            5   11     0    is  Ljava/io/InputStream;

  private static void dynamicInit();
    descriptor: ()V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=0
         0: .line 118
            ldc "en"
            ldc "US"
            invokestatic com.sun.org.apache.xml.internal.security.utils.I18n.init:(Ljava/lang/String;Ljava/lang/String;)V
         1: .line 120
            getstatic com.sun.org.apache.xml.internal.security.Init.log:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINE:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 3
         2: .line 121
            getstatic com.sun.org.apache.xml.internal.security.Init.log:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINE:Ljava/util/logging/Level;
            ldc "Registering default algorithms"
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;)V
         3: .line 124
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.xml.internal.security.Init$2
            dup
            invokespecial com.sun.org.apache.xml.internal.security.Init$2.<init>:()V
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedExceptionAction;)Ljava/lang/Object;
            pop
         4: .line 164
            goto 9
      StackMap locals:
      StackMap stack: java.security.PrivilegedActionException
         5: astore 0 /* ex */
        start local 0 // java.security.PrivilegedActionException ex
         6: .line 165
            aload 0 /* ex */
            invokevirtual java.security.PrivilegedActionException.getException:()Ljava/lang/Exception;
            checkcast com.sun.org.apache.xml.internal.security.exceptions.XMLSecurityException
            astore 1 /* xse */
        start local 1 // com.sun.org.apache.xml.internal.security.exceptions.XMLSecurityException xse
         7: .line 166
            getstatic com.sun.org.apache.xml.internal.security.Init.log:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.SEVERE:Ljava/util/logging/Level;
            aload 1 /* xse */
            invokevirtual com.sun.org.apache.xml.internal.security.exceptions.XMLSecurityException.getMessage:()Ljava/lang/String;
            aload 1 /* xse */
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
         8: .line 167
            aload 1 /* xse */
            invokevirtual com.sun.org.apache.xml.internal.security.exceptions.XMLSecurityException.printStackTrace:()V
        end local 1 // com.sun.org.apache.xml.internal.security.exceptions.XMLSecurityException xse
        end local 0 // java.security.PrivilegedActionException ex
         9: .line 169
      StackMap locals:
      StackMap stack:
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            6    9     0    ex  Ljava/security/PrivilegedActionException;
            7    9     1   xse  Lcom/sun/org/apache/xml/internal/security/exceptions/XMLSecurityException;
      Exception table:
        from    to  target  type
           3     4       5  Class java.security.PrivilegedActionException

  private static void fileInit(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
         0: .line 177
            new java.lang.Error
            dup
            ldc "Unresolved compilation problems: \n\tDocumentBuilderFactory cannot be resolved to a type\n\tDocumentBuilderFactory cannot be resolved\n\tXMLConstants cannot be resolved to a variable\n\tDocumentBuilder cannot be resolved to a type\n\tDocument cannot be resolved to a type\n\tNode cannot be resolved to a type\n\tNode cannot be resolved to a type\n\tNode cannot be resolved to a variable\n\tElement cannot be resolved to a type\n\tElement cannot be resolved to a type\n\tAttr cannot be resolved to a type\n\tAttr cannot be resolved to a type\n\tElement cannot be resolved to a type\n\tElement cannot be resolved to a type\n\tNode cannot be resolved to a type\n\tElement cannot be resolved to a type\n\tElement cannot be resolved to a type\n\tElement cannot be resolved to a type\n\tElement cannot be resolved to a type\n\tElement cannot be resolved to a type\n\tElement cannot be resolved to a type\n\tElement cannot be resolved to a type\n\tElement cannot be resolved to a type\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    MethodParameters:
      Name  Flags
      is    
}
SourceFile: "Init.java"
NestMembers:
  com.sun.org.apache.xml.internal.security.Init$1  com.sun.org.apache.xml.internal.security.Init$2
InnerClasses:
  com.sun.org.apache.xml.internal.security.Init$1
  com.sun.org.apache.xml.internal.security.Init$2