public final class org.eclipse.aether.repository.AuthenticationContext implements java.io.Closeable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.aether.repository.AuthenticationContext
  super_class: java.lang.Object
{
  public static final java.lang.String USERNAME;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "username"

  public static final java.lang.String PASSWORD;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "password"

  public static final java.lang.String NTLM_DOMAIN;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "ntlm.domain"

  public static final java.lang.String NTLM_WORKSTATION;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "ntlm.workstation"

  public static final java.lang.String PRIVATE_KEY_PATH;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "privateKey.path"

  public static final java.lang.String PRIVATE_KEY_PASSPHRASE;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "privateKey.passphrase"

  public static final java.lang.String HOST_KEY_ACCEPTANCE;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "hostKey.acceptance"

  public static final java.lang.String HOST_KEY_REMOTE;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "hostKey.remote"

  public static final java.lang.String HOST_KEY_LOCAL;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "hostKey.local"

  public static final java.lang.String SSL_CONTEXT;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "ssl.context"

  public static final java.lang.String SSL_HOSTNAME_VERIFIER;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "ssl.hostnameVerifier"

  private final org.eclipse.aether.RepositorySystemSession session;
    descriptor: Lorg/eclipse/aether/RepositorySystemSession;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.eclipse.aether.repository.RemoteRepository repository;
    descriptor: Lorg/eclipse/aether/repository/RemoteRepository;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.eclipse.aether.repository.Proxy proxy;
    descriptor: Lorg/eclipse/aether/repository/Proxy;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.eclipse.aether.repository.Authentication auth;
    descriptor: Lorg/eclipse/aether/repository/Authentication;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.Map<java.lang.String, java.lang.Object> authData;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;

  private boolean fillingAuthData;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public static org.eclipse.aether.repository.AuthenticationContext forRepository(org.eclipse.aether.RepositorySystemSession, org.eclipse.aether.repository.RemoteRepository);
    descriptor: (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/repository/RemoteRepository;)Lorg/eclipse/aether/repository/AuthenticationContext;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.aether.RepositorySystemSession session
        start local 1 // org.eclipse.aether.repository.RemoteRepository repository
         0: .line 153
            aload 0 /* session */
            aload 1 /* repository */
            aconst_null
            aload 1 /* repository */
            invokevirtual org.eclipse.aether.repository.RemoteRepository.getAuthentication:()Lorg/eclipse/aether/repository/Authentication;
            invokestatic org.eclipse.aether.repository.AuthenticationContext.newInstance:(Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/repository/RemoteRepository;Lorg/eclipse/aether/repository/Proxy;Lorg/eclipse/aether/repository/Authentication;)Lorg/eclipse/aether/repository/AuthenticationContext;
            areturn
        end local 1 // org.eclipse.aether.repository.RemoteRepository repository
        end local 0 // org.eclipse.aether.RepositorySystemSession session
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0     session  Lorg/eclipse/aether/RepositorySystemSession;
            0    1     1  repository  Lorg/eclipse/aether/repository/RemoteRepository;
    MethodParameters:
            Name  Flags
      session     
      repository  

  public static org.eclipse.aether.repository.AuthenticationContext forProxy(org.eclipse.aether.RepositorySystemSession, org.eclipse.aether.repository.RemoteRepository);
    descriptor: (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/repository/RemoteRepository;)Lorg/eclipse/aether/repository/AuthenticationContext;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.aether.RepositorySystemSession session
        start local 1 // org.eclipse.aether.repository.RemoteRepository repository
         0: .line 166
            aload 1 /* repository */
            invokevirtual org.eclipse.aether.repository.RemoteRepository.getProxy:()Lorg/eclipse/aether/repository/Proxy;
            astore 2 /* proxy */
        start local 2 // org.eclipse.aether.repository.Proxy proxy
         1: .line 167
            aload 0 /* session */
            aload 1 /* repository */
            aload 2 /* proxy */
            aload 2 /* proxy */
            ifnull 2
            aload 2 /* proxy */
            invokevirtual org.eclipse.aether.repository.Proxy.getAuthentication:()Lorg/eclipse/aether/repository/Authentication;
            goto 3
      StackMap locals: org.eclipse.aether.RepositorySystemSession org.eclipse.aether.repository.RemoteRepository org.eclipse.aether.repository.Proxy
      StackMap stack: org.eclipse.aether.RepositorySystemSession org.eclipse.aether.repository.RemoteRepository org.eclipse.aether.repository.Proxy
         2: aconst_null
      StackMap locals: org.eclipse.aether.RepositorySystemSession org.eclipse.aether.repository.RemoteRepository org.eclipse.aether.repository.Proxy
      StackMap stack: org.eclipse.aether.RepositorySystemSession org.eclipse.aether.repository.RemoteRepository org.eclipse.aether.repository.Proxy org.eclipse.aether.repository.Authentication
         3: invokestatic org.eclipse.aether.repository.AuthenticationContext.newInstance:(Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/repository/RemoteRepository;Lorg/eclipse/aether/repository/Proxy;Lorg/eclipse/aether/repository/Authentication;)Lorg/eclipse/aether/repository/AuthenticationContext;
            areturn
        end local 2 // org.eclipse.aether.repository.Proxy proxy
        end local 1 // org.eclipse.aether.repository.RemoteRepository repository
        end local 0 // org.eclipse.aether.RepositorySystemSession session
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0     session  Lorg/eclipse/aether/RepositorySystemSession;
            0    4     1  repository  Lorg/eclipse/aether/repository/RemoteRepository;
            1    4     2       proxy  Lorg/eclipse/aether/repository/Proxy;
    MethodParameters:
            Name  Flags
      session     
      repository  

  private static org.eclipse.aether.repository.AuthenticationContext newInstance(org.eclipse.aether.RepositorySystemSession, org.eclipse.aether.repository.RemoteRepository, org.eclipse.aether.repository.Proxy, org.eclipse.aether.repository.Authentication);
    descriptor: (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/repository/RemoteRepository;Lorg/eclipse/aether/repository/Proxy;Lorg/eclipse/aether/repository/Authentication;)Lorg/eclipse/aether/repository/AuthenticationContext;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // org.eclipse.aether.RepositorySystemSession session
        start local 1 // org.eclipse.aether.repository.RemoteRepository repository
        start local 2 // org.eclipse.aether.repository.Proxy proxy
        start local 3 // org.eclipse.aether.repository.Authentication auth
         0: .line 173
            aload 3 /* auth */
            ifnonnull 2
         1: .line 175
            aconst_null
            areturn
         2: .line 177
      StackMap locals:
      StackMap stack:
            new org.eclipse.aether.repository.AuthenticationContext
            dup
            aload 0 /* session */
            aload 1 /* repository */
            aload 2 /* proxy */
            aload 3 /* auth */
            invokespecial org.eclipse.aether.repository.AuthenticationContext.<init>:(Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/repository/RemoteRepository;Lorg/eclipse/aether/repository/Proxy;Lorg/eclipse/aether/repository/Authentication;)V
            areturn
        end local 3 // org.eclipse.aether.repository.Authentication auth
        end local 2 // org.eclipse.aether.repository.Proxy proxy
        end local 1 // org.eclipse.aether.repository.RemoteRepository repository
        end local 0 // org.eclipse.aether.RepositorySystemSession session
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0     session  Lorg/eclipse/aether/RepositorySystemSession;
            0    3     1  repository  Lorg/eclipse/aether/repository/RemoteRepository;
            0    3     2       proxy  Lorg/eclipse/aether/repository/Proxy;
            0    3     3        auth  Lorg/eclipse/aether/repository/Authentication;
    MethodParameters:
            Name  Flags
      session     
      repository  
      proxy       
      auth        

  private void <init>(org.eclipse.aether.RepositorySystemSession, org.eclipse.aether.repository.RemoteRepository, org.eclipse.aether.repository.Proxy, org.eclipse.aether.repository.Authentication);
    descriptor: (Lorg/eclipse/aether/RepositorySystemSession;Lorg/eclipse/aether/repository/RemoteRepository;Lorg/eclipse/aether/repository/Proxy;Lorg/eclipse/aether/repository/Authentication;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // org.eclipse.aether.repository.AuthenticationContext this
        start local 1 // org.eclipse.aether.RepositorySystemSession session
        start local 2 // org.eclipse.aether.repository.RemoteRepository repository
        start local 3 // org.eclipse.aether.repository.Proxy proxy
        start local 4 // org.eclipse.aether.repository.Authentication auth
         0: .line 180
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 183
            aload 0 /* this */
            aload 1 /* session */
            ldc "repository system session cannot be null"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast org.eclipse.aether.RepositorySystemSession
            putfield org.eclipse.aether.repository.AuthenticationContext.session:Lorg/eclipse/aether/RepositorySystemSession;
         2: .line 184
            aload 0 /* this */
            aload 2 /* repository */
            putfield org.eclipse.aether.repository.AuthenticationContext.repository:Lorg/eclipse/aether/repository/RemoteRepository;
         3: .line 185
            aload 0 /* this */
            aload 3 /* proxy */
            putfield org.eclipse.aether.repository.AuthenticationContext.proxy:Lorg/eclipse/aether/repository/Proxy;
         4: .line 186
            aload 0 /* this */
            aload 4 /* auth */
            putfield org.eclipse.aether.repository.AuthenticationContext.auth:Lorg/eclipse/aether/repository/Authentication;
         5: .line 187
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield org.eclipse.aether.repository.AuthenticationContext.authData:Ljava/util/Map;
         6: .line 188
            return
        end local 4 // org.eclipse.aether.repository.Authentication auth
        end local 3 // org.eclipse.aether.repository.Proxy proxy
        end local 2 // org.eclipse.aether.repository.RemoteRepository repository
        end local 1 // org.eclipse.aether.RepositorySystemSession session
        end local 0 // org.eclipse.aether.repository.AuthenticationContext this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lorg/eclipse/aether/repository/AuthenticationContext;
            0    7     1     session  Lorg/eclipse/aether/RepositorySystemSession;
            0    7     2  repository  Lorg/eclipse/aether/repository/RemoteRepository;
            0    7     3       proxy  Lorg/eclipse/aether/repository/Proxy;
            0    7     4        auth  Lorg/eclipse/aether/repository/Authentication;
    MethodParameters:
            Name  Flags
      session     
      repository  
      proxy       
      auth        

  public org.eclipse.aether.RepositorySystemSession getSession();
    descriptor: ()Lorg/eclipse/aether/RepositorySystemSession;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.aether.repository.AuthenticationContext this
         0: .line 197
            aload 0 /* this */
            getfield org.eclipse.aether.repository.AuthenticationContext.session:Lorg/eclipse/aether/RepositorySystemSession;
            areturn
        end local 0 // org.eclipse.aether.repository.AuthenticationContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/aether/repository/AuthenticationContext;

  public org.eclipse.aether.repository.RemoteRepository getRepository();
    descriptor: ()Lorg/eclipse/aether/repository/RemoteRepository;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.aether.repository.AuthenticationContext this
         0: .line 208
            aload 0 /* this */
            getfield org.eclipse.aether.repository.AuthenticationContext.repository:Lorg/eclipse/aether/repository/RemoteRepository;
            areturn
        end local 0 // org.eclipse.aether.repository.AuthenticationContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/aether/repository/AuthenticationContext;

  public org.eclipse.aether.repository.Proxy getProxy();
    descriptor: ()Lorg/eclipse/aether/repository/Proxy;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.aether.repository.AuthenticationContext this
         0: .line 218
            aload 0 /* this */
            getfield org.eclipse.aether.repository.AuthenticationContext.proxy:Lorg/eclipse/aether/repository/Proxy;
            areturn
        end local 0 // org.eclipse.aether.repository.AuthenticationContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/aether/repository/AuthenticationContext;

  public java.lang.String get(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.aether.repository.AuthenticationContext this
        start local 1 // java.lang.String key
         0: .line 229
            aload 0 /* this */
            aload 1 /* key */
            aconst_null
            ldc Ljava/lang/String;
            invokevirtual org.eclipse.aether.repository.AuthenticationContext.get:(Ljava/lang/String;Ljava/util/Map;Ljava/lang/Class;)Ljava/lang/Object;
            checkcast java.lang.String
            areturn
        end local 1 // java.lang.String key
        end local 0 // org.eclipse.aether.repository.AuthenticationContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/aether/repository/AuthenticationContext;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public <T> T get(java.lang.String, java.lang.Class<T>);
    descriptor: (Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.aether.repository.AuthenticationContext this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Class type
         0: .line 242
            aload 0 /* this */
            aload 1 /* key */
            aconst_null
            aload 2 /* type */
            invokevirtual org.eclipse.aether.repository.AuthenticationContext.get:(Ljava/lang/String;Ljava/util/Map;Ljava/lang/Class;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Class type
        end local 1 // java.lang.String key
        end local 0 // org.eclipse.aether.repository.AuthenticationContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/aether/repository/AuthenticationContext;
            0    1     1   key  Ljava/lang/String;
            0    1     2  type  Ljava/lang/Class<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;Ljava/lang/Class<TT;>;)TT;
    MethodParameters:
      Name  Flags
      key   
      type  

  public <T> T get(java.lang.String, java.util.Map<java.lang.String, java.lang.String>, java.lang.Class<T>);
    descriptor: (Ljava/lang/String;Ljava/util/Map;Ljava/lang/Class;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // org.eclipse.aether.repository.AuthenticationContext this
        start local 1 // java.lang.String key
        start local 2 // java.util.Map data
        start local 3 // java.lang.Class type
         0: .line 257
            aload 1 /* key */
            ldc "authentication key cannot be null"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 258
            aload 1 /* key */
            invokevirtual java.lang.String.length:()I
            ifne 3
         2: .line 260
            new java.lang.IllegalArgumentException
            dup
            ldc "authentication key cannot be empty"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 264
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.aether.repository.AuthenticationContext.authData:Ljava/util/Map;
            dup
            astore 5
            monitorenter
         4: .line 266
            aload 0 /* this */
            getfield org.eclipse.aether.repository.AuthenticationContext.authData:Ljava/util/Map;
            aload 1 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
         5: .line 267
            aload 4 /* value */
            ifnonnull 17
            aload 0 /* this */
            getfield org.eclipse.aether.repository.AuthenticationContext.authData:Ljava/util/Map;
            aload 1 /* key */
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifne 17
            aload 0 /* this */
            getfield org.eclipse.aether.repository.AuthenticationContext.fillingAuthData:Z
            ifne 17
         6: .line 269
            aload 0 /* this */
            getfield org.eclipse.aether.repository.AuthenticationContext.auth:Lorg/eclipse/aether/repository/Authentication;
            ifnull 15
         7: .line 273
            aload 0 /* this */
            iconst_1
            putfield org.eclipse.aether.repository.AuthenticationContext.fillingAuthData:Z
         8: .line 274
            aload 0 /* this */
            getfield org.eclipse.aether.repository.AuthenticationContext.auth:Lorg/eclipse/aether/repository/Authentication;
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* data */
            invokeinterface org.eclipse.aether.repository.Authentication.fill:(Lorg/eclipse/aether/repository/AuthenticationContext;Ljava/lang/String;Ljava/util/Map;)V
         9: .line 275
            goto 13
        10: .line 277
      StackMap locals: org.eclipse.aether.repository.AuthenticationContext java.lang.String java.util.Map java.lang.Class java.lang.Object java.util.Map
      StackMap stack: java.lang.Throwable
            astore 6
        11: .line 278
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.aether.repository.AuthenticationContext.fillingAuthData:Z
        12: .line 279
            aload 6
            athrow
        13: .line 278
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.aether.repository.AuthenticationContext.fillingAuthData:Z
        14: .line 280
            aload 0 /* this */
            getfield org.eclipse.aether.repository.AuthenticationContext.authData:Ljava/util/Map;
            aload 1 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 4 /* value */
        15: .line 282
      StackMap locals:
      StackMap stack:
            aload 4 /* value */
            ifnonnull 17
        16: .line 284
            aload 0 /* this */
            getfield org.eclipse.aether.repository.AuthenticationContext.authData:Ljava/util/Map;
            aload 1 /* key */
            aload 4 /* value */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        17: .line 264
      StackMap locals:
      StackMap stack:
            aload 5
            monitorexit
        18: goto 21
        end local 4 // java.lang.Object value
      StackMap locals: org.eclipse.aether.repository.AuthenticationContext java.lang.String java.util.Map java.lang.Class top java.util.Map
      StackMap stack: java.lang.Throwable
        19: aload 5
            monitorexit
        20: athrow
        start local 4 // java.lang.Object value
        21: .line 289
      StackMap locals: org.eclipse.aether.repository.AuthenticationContext java.lang.String java.util.Map java.lang.Class java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aload 4 /* value */
            aload 3 /* type */
            invokevirtual org.eclipse.aether.repository.AuthenticationContext.convert:(Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object;
            areturn
        end local 4 // java.lang.Object value
        end local 3 // java.lang.Class type
        end local 2 // java.util.Map data
        end local 1 // java.lang.String key
        end local 0 // org.eclipse.aether.repository.AuthenticationContext this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   22     0   this  Lorg/eclipse/aether/repository/AuthenticationContext;
            0   22     1    key  Ljava/lang/String;
            0   22     2   data  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
            0   22     3   type  Ljava/lang/Class<TT;>;
            5   19     4  value  Ljava/lang/Object;
           21   22     4  value  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           7    10      10  any
           4    18      19  any
          19    20      19  any
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;Ljava/lang/Class<TT;>;)TT;
    MethodParameters:
      Name  Flags
      key   
      data  
      type  

  private <T> T convert(, java.lang.Class<T>);
    descriptor: (Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.aether.repository.AuthenticationContext this
        start local 1 // java.lang.Object value
        start local 2 // java.lang.Class type
         0: .line 294
            aload 2 /* type */
            aload 1 /* value */
            invokevirtual java.lang.Class.isInstance:(Ljava/lang/Object;)Z
            ifne 15
         1: .line 296
            ldc Ljava/lang/String;
            aload 2 /* type */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
         2: .line 298
            aload 1 /* value */
            instanceof java.io.File
            ifeq 5
         3: .line 300
            aload 1 /* value */
            checkcast java.io.File
            invokevirtual java.io.File.getPath:()Ljava/lang/String;
            astore 1 /* value */
         4: .line 301
            goto 15
         5: .line 302
      StackMap locals:
      StackMap stack:
            aload 1 /* value */
            instanceof char[]
            ifeq 15
         6: .line 304
            new java.lang.String
            dup
            aload 1 /* value */
            checkcast char[]
            invokespecial java.lang.String.<init>:([C)V
            astore 1 /* value */
         7: .line 306
            goto 15
         8: .line 307
      StackMap locals:
      StackMap stack:
            ldc Ljava/io/File;
            aload 2 /* type */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
         9: .line 309
            aload 1 /* value */
            instanceof java.lang.String
            ifeq 15
        10: .line 311
            new java.io.File
            dup
            aload 1 /* value */
            checkcast java.lang.String
            invokespecial java.io.File.<init>:(Ljava/lang/String;)V
            astore 1 /* value */
        11: .line 313
            goto 15
        12: .line 314
      StackMap locals:
      StackMap stack:
            ldc [C
            aload 2 /* type */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 15
        13: .line 316
            aload 1 /* value */
            instanceof java.lang.String
            ifeq 15
        14: .line 318
            aload 1 /* value */
            checkcast java.lang.String
            invokevirtual java.lang.String.toCharArray:()[C
            astore 1 /* value */
        15: .line 323
      StackMap locals:
      StackMap stack:
            aload 2 /* type */
            aload 1 /* value */
            invokevirtual java.lang.Class.isInstance:(Ljava/lang/Object;)Z
            ifeq 17
        16: .line 325
            aload 2 /* type */
            aload 1 /* value */
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        17: .line 328
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Class type
        end local 1 // java.lang.Object value
        end local 0 // org.eclipse.aether.repository.AuthenticationContext this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   18     0   this  Lorg/eclipse/aether/repository/AuthenticationContext;
            0   18     1  value  Ljava/lang/Object;
            0   18     2   type  Ljava/lang/Class<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Object;Ljava/lang/Class<TT;>;)TT;
    MethodParameters:
       Name  Flags
      value  
      type   

  public void put(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.eclipse.aether.repository.AuthenticationContext this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Object value
         0: .line 341
            aload 1 /* key */
            ldc "authentication key cannot be null"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 342
            aload 1 /* key */
            invokevirtual java.lang.String.length:()I
            ifne 3
         2: .line 344
            new java.lang.IllegalArgumentException
            dup
            ldc "authentication key cannot be empty"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 347
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.aether.repository.AuthenticationContext.authData:Ljava/util/Map;
            dup
            astore 3
            monitorenter
         4: .line 349
            aload 0 /* this */
            getfield org.eclipse.aether.repository.AuthenticationContext.authData:Ljava/util/Map;
            aload 1 /* key */
            aload 2 /* value */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 4 /* oldValue */
        start local 4 // java.lang.Object oldValue
         5: .line 350
            aload 4 /* oldValue */
            instanceof char[]
            ifeq 7
         6: .line 352
            aload 4 /* oldValue */
            checkcast char[]
            iconst_0
            invokestatic java.util.Arrays.fill:([CC)V
        end local 4 // java.lang.Object oldValue
         7: .line 347
      StackMap locals: java.util.Map
      StackMap stack:
            aload 3
            monitorexit
         8: goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         9: aload 3
            monitorexit
        10: athrow
        11: .line 355
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String key
        end local 0 // org.eclipse.aether.repository.AuthenticationContext this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lorg/eclipse/aether/repository/AuthenticationContext;
            0   12     1       key  Ljava/lang/String;
            0   12     2     value  Ljava/lang/Object;
            5    7     4  oldValue  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           4     8       9  any
           9    10       9  any
    MethodParameters:
       Name  Flags
      key    
      value  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.eclipse.aether.repository.AuthenticationContext this
         0: .line 363
            aload 0 /* this */
            getfield org.eclipse.aether.repository.AuthenticationContext.authData:Ljava/util/Map;
            dup
            astore 1
            monitorenter
         1: .line 365
            aload 0 /* this */
            getfield org.eclipse.aether.repository.AuthenticationContext.authData:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: org.eclipse.aether.repository.AuthenticationContext java.util.Map top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 2 /* value */
        start local 2 // java.lang.Object value
         3: .line 367
            aload 2 /* value */
            instanceof char[]
            ifeq 5
         4: .line 369
            aload 2 /* value */
            checkcast char[]
            iconst_0
            invokestatic java.util.Arrays.fill:([CC)V
        end local 2 // java.lang.Object value
         5: .line 365
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 372
            aload 0 /* this */
            getfield org.eclipse.aether.repository.AuthenticationContext.authData:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
         7: .line 363
            aload 1
            monitorexit
         8: goto 11
      StackMap locals: org.eclipse.aether.repository.AuthenticationContext java.util.Map
      StackMap stack: java.lang.Throwable
         9: aload 1
            monitorexit
        10: athrow
        11: .line 374
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.aether.repository.AuthenticationContext this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0   this  Lorg/eclipse/aether/repository/AuthenticationContext;
            3    5     2  value  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           1     8       9  any
           9    10       9  any

  public static void close(org.eclipse.aether.repository.AuthenticationContext);
    descriptor: (Lorg/eclipse/aether/repository/AuthenticationContext;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.aether.repository.AuthenticationContext context
         0: .line 384
            aload 0 /* context */
            ifnull 2
         1: .line 386
            aload 0 /* context */
            invokevirtual org.eclipse.aether.repository.AuthenticationContext.close:()V
         2: .line 388
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.aether.repository.AuthenticationContext context
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0  context  Lorg/eclipse/aether/repository/AuthenticationContext;
    MethodParameters:
         Name  Flags
      context  
}
SourceFile: "AuthenticationContext.java"