public class org.apache.commons.vfs2.UserAuthenticationData
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.vfs2.UserAuthenticationData
  super_class: java.lang.Object
{
  public static final org.apache.commons.vfs2.UserAuthenticationData$Type USERNAME;
    descriptor: Lorg/apache/commons/vfs2/UserAuthenticationData$Type;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final org.apache.commons.vfs2.UserAuthenticationData$Type PASSWORD;
    descriptor: Lorg/apache/commons/vfs2/UserAuthenticationData$Type;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final org.apache.commons.vfs2.UserAuthenticationData$Type DOMAIN;
    descriptor: Lorg/apache/commons/vfs2/UserAuthenticationData$Type;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private final java.util.Map<org.apache.commons.vfs2.UserAuthenticationData$Type, char[]> authenticationData;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Lorg/apache/commons/vfs2/UserAuthenticationData$Type;[C>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 87
            new org.apache.commons.vfs2.UserAuthenticationData$Type
            dup
            ldc "username"
            invokespecial org.apache.commons.vfs2.UserAuthenticationData$Type.<init>:(Ljava/lang/String;)V
            putstatic org.apache.commons.vfs2.UserAuthenticationData.USERNAME:Lorg/apache/commons/vfs2/UserAuthenticationData$Type;
         1: .line 90
            new org.apache.commons.vfs2.UserAuthenticationData$Type
            dup
            ldc "password"
            invokespecial org.apache.commons.vfs2.UserAuthenticationData$Type.<init>:(Ljava/lang/String;)V
            putstatic org.apache.commons.vfs2.UserAuthenticationData.PASSWORD:Lorg/apache/commons/vfs2/UserAuthenticationData$Type;
         2: .line 93
            new org.apache.commons.vfs2.UserAuthenticationData$Type
            dup
            ldc "domain"
            invokespecial org.apache.commons.vfs2.UserAuthenticationData$Type.<init>:(Ljava/lang/String;)V
            putstatic org.apache.commons.vfs2.UserAuthenticationData.DOMAIN:Lorg/apache/commons/vfs2/UserAuthenticationData$Type;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.vfs2.UserAuthenticationData this
         0: .line 101
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 96
            aload 0 /* this */
            new java.util.TreeMap
            dup
            invokespecial java.util.TreeMap.<init>:()V
            putfield org.apache.commons.vfs2.UserAuthenticationData.authenticationData:Ljava/util/Map;
         2: .line 103
            return
        end local 0 // org.apache.commons.vfs2.UserAuthenticationData this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/vfs2/UserAuthenticationData;

  public void setData(org.apache.commons.vfs2.UserAuthenticationData$Type, char[]);
    descriptor: (Lorg/apache/commons/vfs2/UserAuthenticationData$Type;[C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.vfs2.UserAuthenticationData this
        start local 1 // org.apache.commons.vfs2.UserAuthenticationData$Type type
        start local 2 // char[] data
         0: .line 112
            aload 0 /* this */
            getfield org.apache.commons.vfs2.UserAuthenticationData.authenticationData:Ljava/util/Map;
            aload 1 /* type */
            aload 2 /* data */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 113
            return
        end local 2 // char[] data
        end local 1 // org.apache.commons.vfs2.UserAuthenticationData$Type type
        end local 0 // org.apache.commons.vfs2.UserAuthenticationData this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/vfs2/UserAuthenticationData;
            0    2     1  type  Lorg/apache/commons/vfs2/UserAuthenticationData$Type;
            0    2     2  data  [C
    MethodParameters:
      Name  Flags
      type  final
      data  final

  public char[] getData(org.apache.commons.vfs2.UserAuthenticationData$Type);
    descriptor: (Lorg/apache/commons/vfs2/UserAuthenticationData$Type;)[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.vfs2.UserAuthenticationData this
        start local 1 // org.apache.commons.vfs2.UserAuthenticationData$Type type
         0: .line 122
            aload 0 /* this */
            getfield org.apache.commons.vfs2.UserAuthenticationData.authenticationData:Ljava/util/Map;
            aload 1 /* type */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast char[]
            areturn
        end local 1 // org.apache.commons.vfs2.UserAuthenticationData$Type type
        end local 0 // org.apache.commons.vfs2.UserAuthenticationData this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/vfs2/UserAuthenticationData;
            0    1     1  type  Lorg/apache/commons/vfs2/UserAuthenticationData$Type;
    MethodParameters:
      Name  Flags
      type  final

  public void cleanup();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.apache.commons.vfs2.UserAuthenticationData this
         0: .line 130
            aload 0 /* this */
            getfield org.apache.commons.vfs2.UserAuthenticationData.authenticationData:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 1 /* iterAuthenticationData */
        start local 1 // java.util.Iterator iterAuthenticationData
         1: .line 131
            goto 10
         2: .line 132
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 1 /* iterAuthenticationData */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast char[]
            astore 2 /* data */
        start local 2 // char[] data
         3: .line 133
            aload 2 /* data */
            ifnonnull 5
         4: .line 134
            goto 10
         5: .line 137
      StackMap locals: char[]
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 9
         7: .line 138
      StackMap locals: int
      StackMap stack:
            aload 2 /* data */
            iload 3 /* i */
            iconst_0
            castore
         8: .line 137
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            aload 2 /* data */
            arraylength
            if_icmplt 7
        end local 3 // int i
        end local 2 // char[] data
        10: .line 131
      StackMap locals:
      StackMap stack:
            aload 1 /* iterAuthenticationData */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
        11: .line 142
            aload 0 /* this */
            getfield org.apache.commons.vfs2.UserAuthenticationData.authenticationData:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
        12: .line 143
            return
        end local 1 // java.util.Iterator iterAuthenticationData
        end local 0 // org.apache.commons.vfs2.UserAuthenticationData this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   13     0                    this  Lorg/apache/commons/vfs2/UserAuthenticationData;
            1   13     1  iterAuthenticationData  Ljava/util/Iterator<[C>;
            3   10     2                    data  [C
            6   10     3                       i  I
}
SourceFile: "UserAuthenticationData.java"
NestMembers:
  org.apache.commons.vfs2.UserAuthenticationData$Type
InnerClasses:
  public Type = org.apache.commons.vfs2.UserAuthenticationData$Type of org.apache.commons.vfs2.UserAuthenticationData