class jdk.incubator.http.AuthenticationFilter implements jdk.incubator.http.HeaderFilter
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: jdk.incubator.http.AuthenticationFilter
  super_class: java.lang.Object
{
  volatile jdk.incubator.http.MultiExchange<?, ?> exchange;
    descriptor: Ljdk/incubator/http/MultiExchange;
    flags: (0x0040) ACC_VOLATILE
    Signature: Ljdk/incubator/http/MultiExchange<**>;

  private static final java.util.Base64$Encoder encoder;
    descriptor: Ljava/util/Base64$Encoder;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static final int DEFAULT_RETRY_LIMIT;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  static final int retry_limit;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static final int UNAUTHORIZED;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 401

  static final int PROXY_UNAUTHORIZED;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 407

  static final java.util.WeakHashMap<jdk.incubator.http.HttpClientImpl, jdk.incubator.http.AuthenticationFilter$Cache> caches;
    descriptor: Ljava/util/WeakHashMap;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/WeakHashMap<Ljdk/incubator/http/HttpClientImpl;Ljdk/incubator/http/AuthenticationFilter$Cache;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 47
            invokestatic java.util.Base64.getEncoder:()Ljava/util/Base64$Encoder;
            putstatic jdk.incubator.http.AuthenticationFilter.encoder:Ljava/util/Base64$Encoder;
         1: .line 52
            ldc "jdk.httpclient.auth.retrylimit"
            iconst_3
         2: .line 51
            invokestatic jdk.incubator.http.internal.common.Utils.getIntegerNetProperty:(Ljava/lang/String;I)I
            putstatic jdk.incubator.http.AuthenticationFilter.retry_limit:I
         3: .line 262
            new java.util.WeakHashMap
            dup
            invokespecial java.util.WeakHashMap.<init>:()V
            putstatic jdk.incubator.http.AuthenticationFilter.caches:Ljava/util/WeakHashMap;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.incubator.http.AuthenticationFilter this
         0: .line 45
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // jdk.incubator.http.AuthenticationFilter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/incubator/http/AuthenticationFilter;

  private java.net.PasswordAuthentication getCredentials(java.lang.String, boolean, jdk.incubator.http.HttpRequestImpl);
    descriptor: (Ljava/lang/String;ZLjdk/incubator/http/HttpRequestImpl;)Ljava/net/PasswordAuthentication;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=9, locals=11, args_size=4
        start local 0 // jdk.incubator.http.AuthenticationFilter this
        start local 1 // java.lang.String header
        start local 2 // boolean proxy
        start local 3 // jdk.incubator.http.HttpRequestImpl req
         0: .line 62
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            invokevirtual jdk.incubator.http.MultiExchange.client:()Ljdk/incubator/http/HttpClientImpl;
            astore 4 /* client */
        start local 4 // jdk.incubator.http.HttpClientImpl client
         1: .line 64
            aload 4 /* client */
            invokevirtual jdk.incubator.http.HttpClientImpl.authenticator:()Ljava/util/Optional;
         2: .line 65
            invokedynamic get()Ljava/util/function/Supplier;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()Ljava/lang/Object;
                  jdk/incubator/http/AuthenticationFilter.lambda$0()Ljava/io/IOException; (6)
                  ()Ljava/io/IOException;
            invokevirtual java.util.Optional.orElseThrow:(Ljava/util/function/Supplier;)Ljava/lang/Object;
            checkcast java.net.Authenticator
         3: .line 63
            astore 5 /* auth */
        start local 5 // java.net.Authenticator auth
         4: .line 66
            aload 3 /* req */
            invokevirtual jdk.incubator.http.HttpRequestImpl.uri:()Ljava/net/URI;
            astore 6 /* uri */
        start local 6 // java.net.URI uri
         5: .line 67
            new jdk.incubator.http.HeaderParser
            dup
            aload 1 /* header */
            invokespecial jdk.incubator.http.HeaderParser.<init>:(Ljava/lang/String;)V
            astore 7 /* parser */
        start local 7 // jdk.incubator.http.HeaderParser parser
         6: .line 68
            aload 7 /* parser */
            iconst_0
            invokevirtual jdk.incubator.http.HeaderParser.findKey:(I)Ljava/lang/String;
            astore 8 /* authscheme */
        start local 8 // java.lang.String authscheme
         7: .line 70
            aload 7 /* parser */
            ldc "realm"
            invokevirtual jdk.incubator.http.HeaderParser.findValue:(Ljava/lang/String;)Ljava/lang/String;
            astore 9 /* realm */
        start local 9 // java.lang.String realm
         8: .line 71
            iload 2 /* proxy */
            ifeq 9
            getstatic java.net.Authenticator$RequestorType.PROXY:Ljava/net/Authenticator$RequestorType;
            goto 10
      StackMap locals: jdk.incubator.http.AuthenticationFilter java.lang.String int jdk.incubator.http.HttpRequestImpl jdk.incubator.http.HttpClientImpl java.net.Authenticator java.net.URI jdk.incubator.http.HeaderParser java.lang.String java.lang.String
      StackMap stack:
         9: getstatic java.net.Authenticator$RequestorType.SERVER:Ljava/net/Authenticator$RequestorType;
      StackMap locals:
      StackMap stack: java.net.Authenticator$RequestorType
        10: astore 10 /* rtype */
        start local 10 // java.net.Authenticator$RequestorType rtype
        11: .line 74
            aload 5 /* auth */
            aload 6 /* uri */
            invokevirtual java.net.URI.getHost:()Ljava/lang/String;
        12: .line 75
            aconst_null
        13: .line 76
            aload 6 /* uri */
            invokevirtual java.net.URI.getPort:()I
        14: .line 77
            aload 6 /* uri */
            invokevirtual java.net.URI.getScheme:()Ljava/lang/String;
        15: .line 78
            aload 9 /* realm */
        16: .line 79
            aload 8 /* authscheme */
        17: .line 80
            aload 6 /* uri */
            invokevirtual java.net.URI.toURL:()Ljava/net/URL;
        18: .line 81
            aload 10 /* rtype */
        19: .line 74
            invokevirtual java.net.Authenticator.requestPasswordAuthenticationInstance:(Ljava/lang/String;Ljava/net/InetAddress;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/net/URL;Ljava/net/Authenticator$RequestorType;)Ljava/net/PasswordAuthentication;
            areturn
        end local 10 // java.net.Authenticator$RequestorType rtype
        end local 9 // java.lang.String realm
        end local 8 // java.lang.String authscheme
        end local 7 // jdk.incubator.http.HeaderParser parser
        end local 6 // java.net.URI uri
        end local 5 // java.net.Authenticator auth
        end local 4 // jdk.incubator.http.HttpClientImpl client
        end local 3 // jdk.incubator.http.HttpRequestImpl req
        end local 2 // boolean proxy
        end local 1 // java.lang.String header
        end local 0 // jdk.incubator.http.AuthenticationFilter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   20     0        this  Ljdk/incubator/http/AuthenticationFilter;
            0   20     1      header  Ljava/lang/String;
            0   20     2       proxy  Z
            0   20     3         req  Ljdk/incubator/http/HttpRequestImpl;
            1   20     4      client  Ljdk/incubator/http/HttpClientImpl;
            4   20     5        auth  Ljava/net/Authenticator;
            5   20     6         uri  Ljava/net/URI;
            6   20     7      parser  Ljdk/incubator/http/HeaderParser;
            7   20     8  authscheme  Ljava/lang/String;
            8   20     9       realm  Ljava/lang/String;
           11   20    10       rtype  Ljava/net/Authenticator$RequestorType;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      header  
      proxy   
      req     

  private java.net.URI getProxyURI(jdk.incubator.http.HttpRequestImpl);
    descriptor: (Ljdk/incubator/http/HttpRequestImpl;)Ljava/net/URI;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=9, locals=5, args_size=2
        start local 0 // jdk.incubator.http.AuthenticationFilter this
        start local 1 // jdk.incubator.http.HttpRequestImpl r
         0: .line 86
            aload 1 /* r */
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            invokevirtual jdk.incubator.http.MultiExchange.client:()Ljdk/incubator/http/HttpClientImpl;
            invokevirtual jdk.incubator.http.HttpRequestImpl.proxy:(Ljdk/incubator/http/HttpClientImpl;)Ljava/net/InetSocketAddress;
            astore 2 /* proxy */
        start local 2 // java.net.InetSocketAddress proxy
         1: .line 87
            aload 2 /* proxy */
            ifnonnull 3
         2: .line 88
            aconst_null
            areturn
         3: .line 93
      StackMap locals: java.net.InetSocketAddress
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "proxy."
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* r */
            invokevirtual jdk.incubator.http.HttpRequestImpl.uri:()Ljava/net/URI;
            invokevirtual java.net.URI.getScheme:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 3 /* scheme */
        start local 3 // java.lang.String scheme
         4: .line 95
            new java.net.URI
            dup
            aload 3 /* scheme */
         5: .line 96
            aconst_null
         6: .line 97
            aload 2 /* proxy */
            invokevirtual java.net.InetSocketAddress.getHostString:()Ljava/lang/String;
         7: .line 98
            aload 2 /* proxy */
            invokevirtual java.net.InetSocketAddress.getPort:()I
         8: .line 99
            aconst_null
         9: .line 100
            aconst_null
        10: .line 101
            aconst_null
        11: .line 95
            invokespecial java.net.URI.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
        12: areturn
        13: .line 102
      StackMap locals: jdk.incubator.http.AuthenticationFilter jdk.incubator.http.HttpRequestImpl java.net.InetSocketAddress java.lang.String
      StackMap stack: java.net.URISyntaxException
            astore 4 /* e */
        start local 4 // java.net.URISyntaxException e
        14: .line 103
            new java.lang.InternalError
            dup
            aload 4 /* e */
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 4 // java.net.URISyntaxException e
        end local 3 // java.lang.String scheme
        end local 2 // java.net.InetSocketAddress proxy
        end local 1 // jdk.incubator.http.HttpRequestImpl r
        end local 0 // jdk.incubator.http.AuthenticationFilter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0    this  Ljdk/incubator/http/AuthenticationFilter;
            0   15     1       r  Ljdk/incubator/http/HttpRequestImpl;
            1   15     2   proxy  Ljava/net/InetSocketAddress;
            4   15     3  scheme  Ljava/lang/String;
           14   15     4       e  Ljava/net/URISyntaxException;
      Exception table:
        from    to  target  type
           4    12      13  Class java.net.URISyntaxException
    MethodParameters:
      Name  Flags
      r     

  public void request(jdk.incubator.http.HttpRequestImpl, jdk.incubator.http.MultiExchange<?, ?>);
    descriptor: (Ljdk/incubator/http/HttpRequestImpl;Ljdk/incubator/http/MultiExchange;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=3
        start local 0 // jdk.incubator.http.AuthenticationFilter this
        start local 1 // jdk.incubator.http.HttpRequestImpl r
        start local 2 // jdk.incubator.http.MultiExchange e
         0: .line 110
            aload 2 /* e */
            invokestatic jdk.incubator.http.AuthenticationFilter.getCache:(Ljdk/incubator/http/MultiExchange;)Ljdk/incubator/http/AuthenticationFilter$Cache;
            astore 3 /* cache */
        start local 3 // jdk.incubator.http.AuthenticationFilter$Cache cache
         1: .line 111
            aload 0 /* this */
            aload 2 /* e */
            putfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
         2: .line 114
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            getfield jdk.incubator.http.MultiExchange.proxyauth:Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
            ifnonnull 9
         3: .line 115
            aload 0 /* this */
            aload 1 /* r */
            invokevirtual jdk.incubator.http.AuthenticationFilter.getProxyURI:(Ljdk/incubator/http/HttpRequestImpl;)Ljava/net/URI;
            astore 4 /* proxyURI */
        start local 4 // java.net.URI proxyURI
         4: .line 116
            aload 4 /* proxyURI */
            ifnull 9
         5: .line 117
            aload 3 /* cache */
            aload 4 /* proxyURI */
            iconst_1
            invokevirtual jdk.incubator.http.AuthenticationFilter$Cache.get:(Ljava/net/URI;Z)Ljdk/incubator/http/AuthenticationFilter$CacheEntry;
            astore 5 /* ca */
        start local 5 // jdk.incubator.http.AuthenticationFilter$CacheEntry ca
         6: .line 118
            aload 5 /* ca */
            ifnull 9
         7: .line 119
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            new jdk.incubator.http.AuthenticationFilter$AuthInfo
            dup
            iconst_1
            aload 5 /* ca */
            getfield jdk.incubator.http.AuthenticationFilter$CacheEntry.scheme:Ljava/lang/String;
            aconst_null
            aload 5 /* ca */
            invokespecial jdk.incubator.http.AuthenticationFilter$AuthInfo.<init>:(ZLjava/lang/String;Ljava/net/PasswordAuthentication;Ljdk/incubator/http/AuthenticationFilter$CacheEntry;)V
            putfield jdk.incubator.http.MultiExchange.proxyauth:Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
         8: .line 120
            aload 1 /* r */
            iconst_1
            aload 5 /* ca */
            getfield jdk.incubator.http.AuthenticationFilter$CacheEntry.value:Ljava/net/PasswordAuthentication;
            invokestatic jdk.incubator.http.AuthenticationFilter.addBasicCredentials:(Ljdk/incubator/http/HttpRequestImpl;ZLjava/net/PasswordAuthentication;)V
        end local 5 // jdk.incubator.http.AuthenticationFilter$CacheEntry ca
        end local 4 // java.net.URI proxyURI
         9: .line 126
      StackMap locals: jdk.incubator.http.AuthenticationFilter$Cache
      StackMap stack:
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            getfield jdk.incubator.http.MultiExchange.serverauth:Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
            ifnonnull 14
        10: .line 127
            aload 3 /* cache */
            aload 1 /* r */
            invokevirtual jdk.incubator.http.HttpRequestImpl.uri:()Ljava/net/URI;
            iconst_0
            invokevirtual jdk.incubator.http.AuthenticationFilter$Cache.get:(Ljava/net/URI;Z)Ljdk/incubator/http/AuthenticationFilter$CacheEntry;
            astore 4 /* ca */
        start local 4 // jdk.incubator.http.AuthenticationFilter$CacheEntry ca
        11: .line 128
            aload 4 /* ca */
            ifnull 14
        12: .line 129
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            new jdk.incubator.http.AuthenticationFilter$AuthInfo
            dup
            iconst_1
            aload 4 /* ca */
            getfield jdk.incubator.http.AuthenticationFilter$CacheEntry.scheme:Ljava/lang/String;
            aconst_null
            aload 4 /* ca */
            invokespecial jdk.incubator.http.AuthenticationFilter$AuthInfo.<init>:(ZLjava/lang/String;Ljava/net/PasswordAuthentication;Ljdk/incubator/http/AuthenticationFilter$CacheEntry;)V
            putfield jdk.incubator.http.MultiExchange.serverauth:Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
        13: .line 130
            aload 1 /* r */
            iconst_0
            aload 4 /* ca */
            getfield jdk.incubator.http.AuthenticationFilter$CacheEntry.value:Ljava/net/PasswordAuthentication;
            invokestatic jdk.incubator.http.AuthenticationFilter.addBasicCredentials:(Ljdk/incubator/http/HttpRequestImpl;ZLjava/net/PasswordAuthentication;)V
        end local 4 // jdk.incubator.http.AuthenticationFilter$CacheEntry ca
        14: .line 133
      StackMap locals:
      StackMap stack:
            return
        end local 3 // jdk.incubator.http.AuthenticationFilter$Cache cache
        end local 2 // jdk.incubator.http.MultiExchange e
        end local 1 // jdk.incubator.http.HttpRequestImpl r
        end local 0 // jdk.incubator.http.AuthenticationFilter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0      this  Ljdk/incubator/http/AuthenticationFilter;
            0   15     1         r  Ljdk/incubator/http/HttpRequestImpl;
            0   15     2         e  Ljdk/incubator/http/MultiExchange<**>;
            1   15     3     cache  Ljdk/incubator/http/AuthenticationFilter$Cache;
            4    9     4  proxyURI  Ljava/net/URI;
            6    9     5        ca  Ljdk/incubator/http/AuthenticationFilter$CacheEntry;
           11   14     4        ca  Ljdk/incubator/http/AuthenticationFilter$CacheEntry;
    Exceptions:
      throws java.io.IOException
    Signature: (Ljdk/incubator/http/HttpRequestImpl;Ljdk/incubator/http/MultiExchange<**>;)V
    MethodParameters:
      Name  Flags
      r     
      e     

  private static void addBasicCredentials(jdk.incubator.http.HttpRequestImpl, boolean, java.net.PasswordAuthentication);
    descriptor: (Ljdk/incubator/http/HttpRequestImpl;ZLjava/net/PasswordAuthentication;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // jdk.incubator.http.HttpRequestImpl r
        start local 1 // boolean proxy
        start local 2 // java.net.PasswordAuthentication pw
         0: .line 139
            iload 1 /* proxy */
            ifeq 1
            ldc "Proxy-Authorization"
            goto 2
      StackMap locals:
      StackMap stack:
         1: ldc "Authorization"
      StackMap locals:
      StackMap stack: java.lang.String
         2: astore 3 /* hdrname */
        start local 3 // java.lang.String hdrname
         3: .line 140
            new java.lang.StringBuilder
            dup
            sipush 128
            invokespecial java.lang.StringBuilder.<init>:(I)V
            astore 4 /* sb */
        start local 4 // java.lang.StringBuilder sb
         4: .line 141
            aload 4 /* sb */
            aload 2 /* pw */
            invokevirtual java.net.PasswordAuthentication.getUserName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            bipush 58
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            aload 2 /* pw */
            invokevirtual java.net.PasswordAuthentication.getPassword:()[C
            invokevirtual java.lang.StringBuilder.append:([C)Ljava/lang/StringBuilder;
            pop
         5: .line 142
            getstatic jdk.incubator.http.AuthenticationFilter.encoder:Ljava/util/Base64$Encoder;
            aload 4 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            getstatic java.nio.charset.StandardCharsets.ISO_8859_1:Ljava/nio/charset/Charset;
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            invokevirtual java.util.Base64$Encoder.encodeToString:([B)Ljava/lang/String;
            astore 5 /* s */
        start local 5 // java.lang.String s
         6: .line 143
            new java.lang.StringBuilder
            dup
            ldc "Basic "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 5 /* s */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 6 /* value */
        start local 6 // java.lang.String value
         7: .line 144
            aload 0 /* r */
            aload 3 /* hdrname */
            aload 6 /* value */
            invokevirtual jdk.incubator.http.HttpRequestImpl.setSystemHeader:(Ljava/lang/String;Ljava/lang/String;)V
         8: .line 145
            return
        end local 6 // java.lang.String value
        end local 5 // java.lang.String s
        end local 4 // java.lang.StringBuilder sb
        end local 3 // java.lang.String hdrname
        end local 2 // java.net.PasswordAuthentication pw
        end local 1 // boolean proxy
        end local 0 // jdk.incubator.http.HttpRequestImpl r
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0        r  Ljdk/incubator/http/HttpRequestImpl;
            0    9     1    proxy  Z
            0    9     2       pw  Ljava/net/PasswordAuthentication;
            3    9     3  hdrname  Ljava/lang/String;
            4    9     4       sb  Ljava/lang/StringBuilder;
            6    9     5        s  Ljava/lang/String;
            7    9     6    value  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      r      
      proxy  
      pw     

  public jdk.incubator.http.HttpRequestImpl response(jdk.incubator.http.Response);
    descriptor: (Ljdk/incubator/http/Response;)Ljdk/incubator/http/HttpRequestImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=13, args_size=2
        start local 0 // jdk.incubator.http.AuthenticationFilter this
        start local 1 // jdk.incubator.http.Response r
         0: .line 187
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            invokestatic jdk.incubator.http.AuthenticationFilter.getCache:(Ljdk/incubator/http/MultiExchange;)Ljdk/incubator/http/AuthenticationFilter$Cache;
            astore 2 /* cache */
        start local 2 // jdk.incubator.http.AuthenticationFilter$Cache cache
         1: .line 188
            aload 1 /* r */
            invokevirtual jdk.incubator.http.Response.statusCode:()I
            istore 3 /* status */
        start local 3 // int status
         2: .line 189
            aload 1 /* r */
            invokevirtual jdk.incubator.http.Response.headers:()Ljdk/incubator/http/HttpHeaders;
            astore 4 /* hdrs */
        start local 4 // jdk.incubator.http.HttpHeaders hdrs
         3: .line 190
            aload 1 /* r */
            invokevirtual jdk.incubator.http.Response.request:()Ljdk/incubator/http/HttpRequestImpl;
            astore 5 /* req */
        start local 5 // jdk.incubator.http.HttpRequestImpl req
         4: .line 192
            iload 3 /* status */
            sipush 401
            if_icmpeq 12
            iload 3 /* status */
            sipush 407
            if_icmpeq 12
         5: .line 194
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            getfield jdk.incubator.http.MultiExchange.serverauth:Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
            ifnull 8
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            getfield jdk.incubator.http.MultiExchange.serverauth:Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
            getfield jdk.incubator.http.AuthenticationFilter$AuthInfo.fromcache:Z
            ifne 8
         6: .line 195
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            getfield jdk.incubator.http.MultiExchange.serverauth:Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
            astore 6 /* au */
        start local 6 // jdk.incubator.http.AuthenticationFilter$AuthInfo au
         7: .line 196
            aload 2 /* cache */
            aload 6 /* au */
            getfield jdk.incubator.http.AuthenticationFilter$AuthInfo.scheme:Ljava/lang/String;
            aload 5 /* req */
            invokevirtual jdk.incubator.http.HttpRequestImpl.uri:()Ljava/net/URI;
            iconst_0
            aload 6 /* au */
            getfield jdk.incubator.http.AuthenticationFilter$AuthInfo.credentials:Ljava/net/PasswordAuthentication;
            invokevirtual jdk.incubator.http.AuthenticationFilter$Cache.store:(Ljava/lang/String;Ljava/net/URI;ZLjava/net/PasswordAuthentication;)V
        end local 6 // jdk.incubator.http.AuthenticationFilter$AuthInfo au
         8: .line 198
      StackMap locals: jdk.incubator.http.AuthenticationFilter jdk.incubator.http.Response jdk.incubator.http.AuthenticationFilter$Cache int jdk.incubator.http.HttpHeaders jdk.incubator.http.HttpRequestImpl
      StackMap stack:
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            getfield jdk.incubator.http.MultiExchange.proxyauth:Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
            ifnull 11
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            getfield jdk.incubator.http.MultiExchange.proxyauth:Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
            getfield jdk.incubator.http.AuthenticationFilter$AuthInfo.fromcache:Z
            ifne 11
         9: .line 199
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            getfield jdk.incubator.http.MultiExchange.proxyauth:Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
            astore 6 /* au */
        start local 6 // jdk.incubator.http.AuthenticationFilter$AuthInfo au
        10: .line 200
            aload 2 /* cache */
            aload 6 /* au */
            getfield jdk.incubator.http.AuthenticationFilter$AuthInfo.scheme:Ljava/lang/String;
            aload 5 /* req */
            invokevirtual jdk.incubator.http.HttpRequestImpl.uri:()Ljava/net/URI;
            iconst_0
            aload 6 /* au */
            getfield jdk.incubator.http.AuthenticationFilter$AuthInfo.credentials:Ljava/net/PasswordAuthentication;
            invokevirtual jdk.incubator.http.AuthenticationFilter$Cache.store:(Ljava/lang/String;Ljava/net/URI;ZLjava/net/PasswordAuthentication;)V
        end local 6 // jdk.incubator.http.AuthenticationFilter$AuthInfo au
        11: .line 202
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        12: .line 205
      StackMap locals:
      StackMap stack:
            iload 3 /* status */
            sipush 407
            if_icmpne 13
            iconst_1
            goto 14
      StackMap locals:
      StackMap stack:
        13: iconst_0
      StackMap locals:
      StackMap stack: int
        14: istore 6 /* proxy */
        start local 6 // boolean proxy
        15: .line 206
            iload 6 /* proxy */
            ifeq 16
            ldc "Proxy-Authenticate"
            goto 17
      StackMap locals: int
      StackMap stack:
        16: ldc "WWW-Authenticate"
      StackMap locals:
      StackMap stack: java.lang.String
        17: astore 7 /* authname */
        start local 7 // java.lang.String authname
        18: .line 207
            aload 4 /* hdrs */
            aload 7 /* authname */
            invokeinterface jdk.incubator.http.HttpHeaders.firstValue:(Ljava/lang/String;)Ljava/util/Optional;
            invokedynamic get()Ljava/util/function/Supplier;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()Ljava/lang/Object;
                  jdk/incubator/http/AuthenticationFilter.lambda$1()Ljava/io/IOException; (6)
                  ()Ljava/io/IOException;
            invokevirtual java.util.Optional.orElseThrow:(Ljava/util/function/Supplier;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 8 /* authval */
        start local 8 // java.lang.String authval
        19: .line 210
            new jdk.incubator.http.HeaderParser
            dup
            aload 8 /* authval */
            invokespecial jdk.incubator.http.HeaderParser.<init>:(Ljava/lang/String;)V
            astore 9 /* parser */
        start local 9 // jdk.incubator.http.HeaderParser parser
        20: .line 211
            aload 9 /* parser */
            iconst_0
            invokevirtual jdk.incubator.http.HeaderParser.findKey:(I)Ljava/lang/String;
            astore 10 /* scheme */
        start local 10 // java.lang.String scheme
        21: .line 215
            aload 10 /* scheme */
            ldc "Basic"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 23
        22: .line 216
            aconst_null
            areturn
        23: .line 219
      StackMap locals: jdk.incubator.http.AuthenticationFilter jdk.incubator.http.Response jdk.incubator.http.AuthenticationFilter$Cache int jdk.incubator.http.HttpHeaders jdk.incubator.http.HttpRequestImpl int java.lang.String java.lang.String jdk.incubator.http.HeaderParser java.lang.String
      StackMap stack:
            aload 9 /* parser */
            ldc "realm"
            invokevirtual jdk.incubator.http.HeaderParser.findValue:(Ljava/lang/String;)Ljava/lang/String;
            pop
        24: .line 220
            iload 6 /* proxy */
            ifeq 25
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            getfield jdk.incubator.http.MultiExchange.proxyauth:Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
            goto 26
      StackMap locals:
      StackMap stack:
        25: aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            getfield jdk.incubator.http.MultiExchange.serverauth:Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
      StackMap locals:
      StackMap stack: jdk.incubator.http.AuthenticationFilter$AuthInfo
        26: astore 11 /* au */
        start local 11 // jdk.incubator.http.AuthenticationFilter$AuthInfo au
        27: .line 221
            aload 11 /* au */
            ifnonnull 38
        28: .line 222
            aload 0 /* this */
            aload 8 /* authval */
            iload 6 /* proxy */
            aload 5 /* req */
            invokevirtual jdk.incubator.http.AuthenticationFilter.getCredentials:(Ljava/lang/String;ZLjdk/incubator/http/HttpRequestImpl;)Ljava/net/PasswordAuthentication;
            astore 12 /* pw */
        start local 12 // java.net.PasswordAuthentication pw
        29: .line 223
            aload 12 /* pw */
            ifnonnull 31
        30: .line 224
            new java.io.IOException
            dup
            ldc "No credentials provided"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        31: .line 227
      StackMap locals: jdk.incubator.http.AuthenticationFilter$AuthInfo java.net.PasswordAuthentication
      StackMap stack:
            new jdk.incubator.http.AuthenticationFilter$AuthInfo
            dup
            iconst_0
            ldc "Basic"
            aload 12 /* pw */
            invokespecial jdk.incubator.http.AuthenticationFilter$AuthInfo.<init>:(ZLjava/lang/String;Ljava/net/PasswordAuthentication;)V
            astore 11 /* au */
        32: .line 228
            iload 6 /* proxy */
            ifeq 35
        33: .line 229
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            aload 11 /* au */
            putfield jdk.incubator.http.MultiExchange.proxyauth:Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
        34: .line 230
            goto 36
        35: .line 231
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            aload 11 /* au */
            putfield jdk.incubator.http.MultiExchange.serverauth:Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
        36: .line 233
      StackMap locals:
      StackMap stack:
            aload 5 /* req */
            iload 6 /* proxy */
            aload 12 /* pw */
            invokestatic jdk.incubator.http.AuthenticationFilter.addBasicCredentials:(Ljdk/incubator/http/HttpRequestImpl;ZLjava/net/PasswordAuthentication;)V
        37: .line 234
            aload 5 /* req */
            areturn
        end local 12 // java.net.PasswordAuthentication pw
        38: .line 235
      StackMap locals:
      StackMap stack:
            aload 11 /* au */
            getfield jdk.incubator.http.AuthenticationFilter$AuthInfo.retries:I
            getstatic jdk.incubator.http.AuthenticationFilter.retry_limit:I
            if_icmple 42
        39: .line 236
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "too many authentication attempts. Limit: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        40: .line 237
            getstatic jdk.incubator.http.AuthenticationFilter.retry_limit:I
            invokestatic java.lang.Integer.toString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        41: .line 236
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        42: .line 240
      StackMap locals:
      StackMap stack:
            aload 11 /* au */
            getfield jdk.incubator.http.AuthenticationFilter$AuthInfo.fromcache:Z
            ifeq 44
        43: .line 241
            aload 2 /* cache */
            aload 11 /* au */
            getfield jdk.incubator.http.AuthenticationFilter$AuthInfo.cacheEntry:Ljdk/incubator/http/AuthenticationFilter$CacheEntry;
            invokevirtual jdk.incubator.http.AuthenticationFilter$Cache.remove:(Ljdk/incubator/http/AuthenticationFilter$CacheEntry;)V
        44: .line 244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 8 /* authval */
            iload 6 /* proxy */
            aload 5 /* req */
            invokevirtual jdk.incubator.http.AuthenticationFilter.getCredentials:(Ljava/lang/String;ZLjdk/incubator/http/HttpRequestImpl;)Ljava/net/PasswordAuthentication;
            astore 12 /* pw */
        start local 12 // java.net.PasswordAuthentication pw
        45: .line 245
            aload 12 /* pw */
            ifnonnull 47
        46: .line 246
            new java.io.IOException
            dup
            ldc "No credentials provided"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        47: .line 248
      StackMap locals: java.net.PasswordAuthentication
      StackMap stack:
            aload 11 /* au */
            aload 12 /* pw */
            invokevirtual jdk.incubator.http.AuthenticationFilter$AuthInfo.retryWithCredentials:(Ljava/net/PasswordAuthentication;)Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
            astore 11 /* au */
        48: .line 249
            iload 6 /* proxy */
            ifeq 51
        49: .line 250
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            aload 11 /* au */
            putfield jdk.incubator.http.MultiExchange.proxyauth:Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
        50: .line 251
            goto 52
        51: .line 252
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.incubator.http.AuthenticationFilter.exchange:Ljdk/incubator/http/MultiExchange;
            aload 11 /* au */
            putfield jdk.incubator.http.MultiExchange.serverauth:Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
        52: .line 254
      StackMap locals:
      StackMap stack:
            aload 5 /* req */
            iload 6 /* proxy */
            aload 11 /* au */
            getfield jdk.incubator.http.AuthenticationFilter$AuthInfo.credentials:Ljava/net/PasswordAuthentication;
            invokestatic jdk.incubator.http.AuthenticationFilter.addBasicCredentials:(Ljdk/incubator/http/HttpRequestImpl;ZLjava/net/PasswordAuthentication;)V
        53: .line 255
            aload 11 /* au */
            dup
            getfield jdk.incubator.http.AuthenticationFilter$AuthInfo.retries:I
            iconst_1
            iadd
            putfield jdk.incubator.http.AuthenticationFilter$AuthInfo.retries:I
        54: .line 256
            aload 5 /* req */
            areturn
        end local 12 // java.net.PasswordAuthentication pw
        end local 11 // jdk.incubator.http.AuthenticationFilter$AuthInfo au
        end local 10 // java.lang.String scheme
        end local 9 // jdk.incubator.http.HeaderParser parser
        end local 8 // java.lang.String authval
        end local 7 // java.lang.String authname
        end local 6 // boolean proxy
        end local 5 // jdk.incubator.http.HttpRequestImpl req
        end local 4 // jdk.incubator.http.HttpHeaders hdrs
        end local 3 // int status
        end local 2 // jdk.incubator.http.AuthenticationFilter$Cache cache
        end local 1 // jdk.incubator.http.Response r
        end local 0 // jdk.incubator.http.AuthenticationFilter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   55     0      this  Ljdk/incubator/http/AuthenticationFilter;
            0   55     1         r  Ljdk/incubator/http/Response;
            1   55     2     cache  Ljdk/incubator/http/AuthenticationFilter$Cache;
            2   55     3    status  I
            3   55     4      hdrs  Ljdk/incubator/http/HttpHeaders;
            4   55     5       req  Ljdk/incubator/http/HttpRequestImpl;
            7    8     6        au  Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
           10   11     6        au  Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
           15   55     6     proxy  Z
           18   55     7  authname  Ljava/lang/String;
           19   55     8   authval  Ljava/lang/String;
           20   55     9    parser  Ljdk/incubator/http/HeaderParser;
           21   55    10    scheme  Ljava/lang/String;
           27   55    11        au  Ljdk/incubator/http/AuthenticationFilter$AuthInfo;
           29   38    12        pw  Ljava/net/PasswordAuthentication;
           45   55    12        pw  Ljava/net/PasswordAuthentication;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      r     

  static synchronized jdk.incubator.http.AuthenticationFilter$Cache getCache(jdk.incubator.http.MultiExchange<?, ?>);
    descriptor: (Ljdk/incubator/http/MultiExchange;)Ljdk/incubator/http/AuthenticationFilter$Cache;
    flags: (0x0028) ACC_STATIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // jdk.incubator.http.MultiExchange exchange
         0: .line 265
            aload 0 /* exchange */
            invokevirtual jdk.incubator.http.MultiExchange.client:()Ljdk/incubator/http/HttpClientImpl;
            astore 1 /* client */
        start local 1 // jdk.incubator.http.HttpClientImpl client
         1: .line 266
            getstatic jdk.incubator.http.AuthenticationFilter.caches:Ljava/util/WeakHashMap;
            aload 1 /* client */
            invokevirtual java.util.WeakHashMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast jdk.incubator.http.AuthenticationFilter$Cache
            astore 2 /* c */
        start local 2 // jdk.incubator.http.AuthenticationFilter$Cache c
         2: .line 267
            aload 2 /* c */
            ifnonnull 5
         3: .line 268
            new jdk.incubator.http.AuthenticationFilter$Cache
            dup
            invokespecial jdk.incubator.http.AuthenticationFilter$Cache.<init>:()V
            astore 2 /* c */
         4: .line 269
            getstatic jdk.incubator.http.AuthenticationFilter.caches:Ljava/util/WeakHashMap;
            aload 1 /* client */
            aload 2 /* c */
            invokevirtual java.util.WeakHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         5: .line 271
      StackMap locals: jdk.incubator.http.HttpClientImpl jdk.incubator.http.AuthenticationFilter$Cache
      StackMap stack:
            aload 2 /* c */
            areturn
        end local 2 // jdk.incubator.http.AuthenticationFilter$Cache c
        end local 1 // jdk.incubator.http.HttpClientImpl client
        end local 0 // jdk.incubator.http.MultiExchange exchange
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0  exchange  Ljdk/incubator/http/MultiExchange<**>;
            1    6     1    client  Ljdk/incubator/http/HttpClientImpl;
            2    6     2         c  Ljdk/incubator/http/AuthenticationFilter$Cache;
    Signature: (Ljdk/incubator/http/MultiExchange<**>;)Ljdk/incubator/http/AuthenticationFilter$Cache;
    MethodParameters:
          Name  Flags
      exchange  

  private static java.io.IOException lambda$0();
    descriptor: ()Ljava/io/IOException;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 65
            new java.io.IOException
            dup
            ldc "No authenticator set"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static java.io.IOException lambda$1();
    descriptor: ()Ljava/io/IOException;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 208
            new java.io.IOException
            dup
            ldc "Invalid auth header"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "AuthenticationFilter.java"
NestMembers:
  jdk.incubator.http.AuthenticationFilter$AuthInfo  jdk.incubator.http.AuthenticationFilter$Cache  jdk.incubator.http.AuthenticationFilter$CacheEntry
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public final RequestorType = java.net.Authenticator$RequestorType of java.net.Authenticator
  public Encoder = java.util.Base64$Encoder of java.util.Base64
  AuthInfo = jdk.incubator.http.AuthenticationFilter$AuthInfo of jdk.incubator.http.AuthenticationFilter
  Cache = jdk.incubator.http.AuthenticationFilter$Cache of jdk.incubator.http.AuthenticationFilter
  CacheEntry = jdk.incubator.http.AuthenticationFilter$CacheEntry of jdk.incubator.http.AuthenticationFilter