public class org.apache.http.impl.execchain.ProtocolExec implements org.apache.http.impl.execchain.ClientExecChain
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.http.impl.execchain.ProtocolExec
  super_class: java.lang.Object
{
  private final org.apache.commons.logging.Log log;
    descriptor: Lorg/apache/commons/logging/Log;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.apache.http.impl.execchain.ClientExecChain requestExecutor;
    descriptor: Lorg/apache/http/impl/execchain/ClientExecChain;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.apache.http.protocol.HttpProcessor httpProcessor;
    descriptor: Lorg/apache/http/protocol/HttpProcessor;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.apache.http.impl.execchain.ClientExecChain, org.apache.http.protocol.HttpProcessor);
    descriptor: (Lorg/apache/http/impl/execchain/ClientExecChain;Lorg/apache/http/protocol/HttpProcessor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.http.impl.execchain.ProtocolExec this
        start local 1 // org.apache.http.impl.execchain.ClientExecChain requestExecutor
        start local 2 // org.apache.http.protocol.HttpProcessor httpProcessor
         0: .line 82
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 77
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokestatic org.apache.commons.logging.LogFactory.getLog:(Ljava/lang/Class;)Lorg/apache/commons/logging/Log;
            putfield org.apache.http.impl.execchain.ProtocolExec.log:Lorg/apache/commons/logging/Log;
         2: .line 83
            aload 1 /* requestExecutor */
            ldc "HTTP client request executor"
            invokestatic org.apache.http.util.Args.notNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         3: .line 84
            aload 2 /* httpProcessor */
            ldc "HTTP protocol processor"
            invokestatic org.apache.http.util.Args.notNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         4: .line 85
            aload 0 /* this */
            aload 1 /* requestExecutor */
            putfield org.apache.http.impl.execchain.ProtocolExec.requestExecutor:Lorg/apache/http/impl/execchain/ClientExecChain;
         5: .line 86
            aload 0 /* this */
            aload 2 /* httpProcessor */
            putfield org.apache.http.impl.execchain.ProtocolExec.httpProcessor:Lorg/apache/http/protocol/HttpProcessor;
         6: .line 87
            return
        end local 2 // org.apache.http.protocol.HttpProcessor httpProcessor
        end local 1 // org.apache.http.impl.execchain.ClientExecChain requestExecutor
        end local 0 // org.apache.http.impl.execchain.ProtocolExec this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    7     0             this  Lorg/apache/http/impl/execchain/ProtocolExec;
            0    7     1  requestExecutor  Lorg/apache/http/impl/execchain/ClientExecChain;
            0    7     2    httpProcessor  Lorg/apache/http/protocol/HttpProcessor;
    MethodParameters:
                 Name  Flags
      requestExecutor  final
      httpProcessor    final

  void rewriteRequestURI(org.apache.http.client.methods.HttpRequestWrapper, org.apache.http.conn.routing.HttpRoute, boolean);
    descriptor: (Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/conn/routing/HttpRoute;Z)V
    flags: (0x0000) 
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.apache.http.impl.execchain.ProtocolExec this
        start local 1 // org.apache.http.client.methods.HttpRequestWrapper request
        start local 2 // org.apache.http.conn.routing.HttpRoute route
        start local 3 // boolean normalizeUri
         0: .line 93
            aload 1 /* request */
            invokevirtual org.apache.http.client.methods.HttpRequestWrapper.getURI:()Ljava/net/URI;
            astore 4 /* uri */
        start local 4 // java.net.URI uri
         1: .line 94
            aload 4 /* uri */
            ifnull 6
         2: .line 96
            aload 1 /* request */
            aload 4 /* uri */
            aload 2 /* route */
            iload 3 /* normalizeUri */
            invokestatic org.apache.http.client.utils.URIUtils.rewriteURIForRoute:(Ljava/net/URI;Lorg/apache/http/conn/routing/RouteInfo;Z)Ljava/net/URI;
            invokevirtual org.apache.http.client.methods.HttpRequestWrapper.setURI:(Ljava/net/URI;)V
         3: .line 97
            goto 6
      StackMap locals: org.apache.http.impl.execchain.ProtocolExec org.apache.http.client.methods.HttpRequestWrapper org.apache.http.conn.routing.HttpRoute int java.net.URI
      StackMap stack: java.net.URISyntaxException
         4: astore 5 /* ex */
        start local 5 // java.net.URISyntaxException ex
         5: .line 98
            new org.apache.http.ProtocolException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid URI: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* uri */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 5 /* ex */
            invokespecial org.apache.http.ProtocolException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.net.URISyntaxException ex
         6: .line 101
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.net.URI uri
        end local 3 // boolean normalizeUri
        end local 2 // org.apache.http.conn.routing.HttpRoute route
        end local 1 // org.apache.http.client.methods.HttpRequestWrapper request
        end local 0 // org.apache.http.impl.execchain.ProtocolExec this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Lorg/apache/http/impl/execchain/ProtocolExec;
            0    7     1       request  Lorg/apache/http/client/methods/HttpRequestWrapper;
            0    7     2         route  Lorg/apache/http/conn/routing/HttpRoute;
            0    7     3  normalizeUri  Z
            1    7     4           uri  Ljava/net/URI;
            5    6     5            ex  Ljava/net/URISyntaxException;
      Exception table:
        from    to  target  type
           2     3       4  Class java.net.URISyntaxException
    Exceptions:
      throws org.apache.http.ProtocolException
    MethodParameters:
              Name  Flags
      request       final
      route         final
      normalizeUri  final

  public org.apache.http.client.methods.CloseableHttpResponse execute(org.apache.http.conn.routing.HttpRoute, org.apache.http.client.methods.HttpRequestWrapper, org.apache.http.client.protocol.HttpClientContext, org.apache.http.client.methods.HttpExecutionAware);
    descriptor: (Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=12, args_size=5
        start local 0 // org.apache.http.impl.execchain.ProtocolExec this
        start local 1 // org.apache.http.conn.routing.HttpRoute route
        start local 2 // org.apache.http.client.methods.HttpRequestWrapper request
        start local 3 // org.apache.http.client.protocol.HttpClientContext context
        start local 4 // org.apache.http.client.methods.HttpExecutionAware execAware
         0: .line 110
            aload 1 /* route */
            ldc "HTTP route"
            invokestatic org.apache.http.util.Args.notNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 111
            aload 2 /* request */
            ldc "HTTP request"
            invokestatic org.apache.http.util.Args.notNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 112
            aload 3 /* context */
            ldc "HTTP context"
            invokestatic org.apache.http.util.Args.notNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         3: .line 114
            aload 2 /* request */
            invokevirtual org.apache.http.client.methods.HttpRequestWrapper.getOriginal:()Lorg/apache/http/HttpRequest;
            astore 5 /* original */
        start local 5 // org.apache.http.HttpRequest original
         4: .line 115
            aconst_null
            astore 6 /* uri */
        start local 6 // java.net.URI uri
         5: .line 116
            aload 5 /* original */
            instanceof org.apache.http.client.methods.HttpUriRequest
            ifeq 8
         6: .line 117
            aload 5 /* original */
            checkcast org.apache.http.client.methods.HttpUriRequest
            invokeinterface org.apache.http.client.methods.HttpUriRequest.getURI:()Ljava/net/URI;
            astore 6 /* uri */
         7: .line 118
            goto 16
         8: .line 119
      StackMap locals: org.apache.http.HttpRequest java.net.URI
      StackMap stack:
            aload 5 /* original */
            invokeinterface org.apache.http.HttpRequest.getRequestLine:()Lorg/apache/http/RequestLine;
            invokeinterface org.apache.http.RequestLine.getUri:()Ljava/lang/String;
            astore 7 /* uriString */
        start local 7 // java.lang.String uriString
         9: .line 121
            aload 7 /* uriString */
            invokestatic java.net.URI.create:(Ljava/lang/String;)Ljava/net/URI;
            astore 6 /* uri */
        10: .line 122
            goto 16
      StackMap locals: org.apache.http.impl.execchain.ProtocolExec org.apache.http.conn.routing.HttpRoute org.apache.http.client.methods.HttpRequestWrapper org.apache.http.client.protocol.HttpClientContext org.apache.http.client.methods.HttpExecutionAware org.apache.http.HttpRequest java.net.URI java.lang.String
      StackMap stack: java.lang.IllegalArgumentException
        11: astore 8 /* ex */
        start local 8 // java.lang.IllegalArgumentException ex
        12: .line 123
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.ProtocolExec.log:Lorg/apache/commons/logging/Log;
            invokeinterface org.apache.commons.logging.Log.isDebugEnabled:()Z
            ifeq 16
        13: .line 124
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.ProtocolExec.log:Lorg/apache/commons/logging/Log;
            new java.lang.StringBuilder
            dup
            ldc "Unable to parse '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 7 /* uriString */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "' as a valid URI; "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        14: .line 125
            ldc "request URI and Host header may be inconsistent"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 8 /* ex */
        15: .line 124
            invokeinterface org.apache.commons.logging.Log.debug:(Ljava/lang/Object;Ljava/lang/Throwable;)V
        end local 8 // java.lang.IllegalArgumentException ex
        end local 7 // java.lang.String uriString
        16: .line 130
      StackMap locals:
      StackMap stack:
            aload 2 /* request */
            aload 6 /* uri */
            invokevirtual org.apache.http.client.methods.HttpRequestWrapper.setURI:(Ljava/net/URI;)V
        17: .line 133
            aload 0 /* this */
            aload 2 /* request */
            aload 1 /* route */
            aload 3 /* context */
            invokevirtual org.apache.http.client.protocol.HttpClientContext.getRequestConfig:()Lorg/apache/http/client/config/RequestConfig;
            invokevirtual org.apache.http.client.config.RequestConfig.isNormalizeUri:()Z
            invokevirtual org.apache.http.impl.execchain.ProtocolExec.rewriteRequestURI:(Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/conn/routing/HttpRoute;Z)V
        18: .line 135
            aload 2 /* request */
            invokevirtual org.apache.http.client.methods.HttpRequestWrapper.getParams:()Lorg/apache/http/params/HttpParams;
            astore 7 /* params */
        start local 7 // org.apache.http.params.HttpParams params
        19: .line 136
            aload 7 /* params */
            ldc "http.virtual-host"
            invokeinterface org.apache.http.params.HttpParams.getParameter:(Ljava/lang/String;)Ljava/lang/Object;
            checkcast org.apache.http.HttpHost
            astore 8 /* virtualHost */
        start local 8 // org.apache.http.HttpHost virtualHost
        20: .line 138
            aload 8 /* virtualHost */
            ifnull 28
            aload 8 /* virtualHost */
            invokevirtual org.apache.http.HttpHost.getPort:()I
            iconst_m1
            if_icmpne 28
        21: .line 139
            aload 1 /* route */
            invokevirtual org.apache.http.conn.routing.HttpRoute.getTargetHost:()Lorg/apache/http/HttpHost;
            invokevirtual org.apache.http.HttpHost.getPort:()I
            istore 9 /* port */
        start local 9 // int port
        22: .line 140
            iload 9 /* port */
            iconst_m1
            if_icmpeq 26
        23: .line 141
            new org.apache.http.HttpHost
            dup
            aload 8 /* virtualHost */
            invokevirtual org.apache.http.HttpHost.getHostName:()Ljava/lang/String;
            iload 9 /* port */
        24: .line 142
            aload 8 /* virtualHost */
            invokevirtual org.apache.http.HttpHost.getSchemeName:()Ljava/lang/String;
        25: .line 141
            invokespecial org.apache.http.HttpHost.<init>:(Ljava/lang/String;ILjava/lang/String;)V
            astore 8 /* virtualHost */
        26: .line 144
      StackMap locals: org.apache.http.params.HttpParams org.apache.http.HttpHost int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.ProtocolExec.log:Lorg/apache/commons/logging/Log;
            invokeinterface org.apache.commons.logging.Log.isDebugEnabled:()Z
            ifeq 28
        27: .line 145
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.ProtocolExec.log:Lorg/apache/commons/logging/Log;
            new java.lang.StringBuilder
            dup
            ldc "Using virtual host"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 8 /* virtualHost */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface org.apache.commons.logging.Log.debug:(Ljava/lang/Object;)V
        end local 9 // int port
        28: .line 149
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 9 /* target */
        start local 9 // org.apache.http.HttpHost target
        29: .line 150
            aload 8 /* virtualHost */
            ifnull 32
        30: .line 151
            aload 8 /* virtualHost */
            astore 9 /* target */
        31: .line 152
            goto 34
        32: .line 153
      StackMap locals: org.apache.http.HttpHost
      StackMap stack:
            aload 6 /* uri */
            ifnull 34
            aload 6 /* uri */
            invokevirtual java.net.URI.isAbsolute:()Z
            ifeq 34
            aload 6 /* uri */
            invokevirtual java.net.URI.getHost:()Ljava/lang/String;
            ifnull 34
        33: .line 154
            new org.apache.http.HttpHost
            dup
            aload 6 /* uri */
            invokevirtual java.net.URI.getHost:()Ljava/lang/String;
            aload 6 /* uri */
            invokevirtual java.net.URI.getPort:()I
            aload 6 /* uri */
            invokevirtual java.net.URI.getScheme:()Ljava/lang/String;
            invokespecial org.apache.http.HttpHost.<init>:(Ljava/lang/String;ILjava/lang/String;)V
            astore 9 /* target */
        34: .line 157
      StackMap locals:
      StackMap stack:
            aload 9 /* target */
            ifnonnull 36
        35: .line 158
            aload 2 /* request */
            invokevirtual org.apache.http.client.methods.HttpRequestWrapper.getTarget:()Lorg/apache/http/HttpHost;
            astore 9 /* target */
        36: .line 160
      StackMap locals:
      StackMap stack:
            aload 9 /* target */
            ifnonnull 38
        37: .line 161
            aload 1 /* route */
            invokevirtual org.apache.http.conn.routing.HttpRoute.getTargetHost:()Lorg/apache/http/HttpHost;
            astore 9 /* target */
        38: .line 165
      StackMap locals:
      StackMap stack:
            aload 6 /* uri */
            ifnull 49
        39: .line 166
            aload 6 /* uri */
            invokevirtual java.net.URI.getUserInfo:()Ljava/lang/String;
            astore 10 /* userinfo */
        start local 10 // java.lang.String userinfo
        40: .line 167
            aload 10 /* userinfo */
            ifnull 49
        41: .line 168
            aload 3 /* context */
            invokevirtual org.apache.http.client.protocol.HttpClientContext.getCredentialsProvider:()Lorg/apache/http/client/CredentialsProvider;
            astore 11 /* credsProvider */
        start local 11 // org.apache.http.client.CredentialsProvider credsProvider
        42: .line 169
            aload 11 /* credsProvider */
            ifnonnull 45
        43: .line 170
            new org.apache.http.impl.client.BasicCredentialsProvider
            dup
            invokespecial org.apache.http.impl.client.BasicCredentialsProvider.<init>:()V
            astore 11 /* credsProvider */
        44: .line 171
            aload 3 /* context */
            aload 11 /* credsProvider */
            invokevirtual org.apache.http.client.protocol.HttpClientContext.setCredentialsProvider:(Lorg/apache/http/client/CredentialsProvider;)V
        45: .line 173
      StackMap locals: java.lang.String org.apache.http.client.CredentialsProvider
      StackMap stack:
            aload 11 /* credsProvider */
        46: .line 174
            new org.apache.http.auth.AuthScope
            dup
            aload 9 /* target */
            invokespecial org.apache.http.auth.AuthScope.<init>:(Lorg/apache/http/HttpHost;)V
        47: .line 175
            new org.apache.http.auth.UsernamePasswordCredentials
            dup
            aload 10 /* userinfo */
            invokespecial org.apache.http.auth.UsernamePasswordCredentials.<init>:(Ljava/lang/String;)V
        48: .line 173
            invokeinterface org.apache.http.client.CredentialsProvider.setCredentials:(Lorg/apache/http/auth/AuthScope;Lorg/apache/http/auth/Credentials;)V
        end local 11 // org.apache.http.client.CredentialsProvider credsProvider
        end local 10 // java.lang.String userinfo
        49: .line 180
      StackMap locals:
      StackMap stack:
            aload 3 /* context */
            ldc "http.target_host"
            aload 9 /* target */
            invokevirtual org.apache.http.client.protocol.HttpClientContext.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
        50: .line 181
            aload 3 /* context */
            ldc "http.route"
            aload 1 /* route */
            invokevirtual org.apache.http.client.protocol.HttpClientContext.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
        51: .line 182
            aload 3 /* context */
            ldc "http.request"
            aload 2 /* request */
            invokevirtual org.apache.http.client.protocol.HttpClientContext.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
        52: .line 184
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.ProtocolExec.httpProcessor:Lorg/apache/http/protocol/HttpProcessor;
            aload 2 /* request */
            aload 3 /* context */
            invokeinterface org.apache.http.protocol.HttpProcessor.process:(Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)V
        53: .line 186
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.ProtocolExec.requestExecutor:Lorg/apache/http/impl/execchain/ClientExecChain;
            aload 1 /* route */
            aload 2 /* request */
        54: .line 187
            aload 3 /* context */
            aload 4 /* execAware */
        55: .line 186
            invokeinterface org.apache.http.impl.execchain.ClientExecChain.execute:(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;
            astore 10 /* response */
        start local 10 // org.apache.http.client.methods.CloseableHttpResponse response
        56: .line 190
            aload 3 /* context */
            ldc "http.response"
            aload 10 /* response */
            invokevirtual org.apache.http.client.protocol.HttpClientContext.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
        57: .line 191
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.ProtocolExec.httpProcessor:Lorg/apache/http/protocol/HttpProcessor;
            aload 10 /* response */
            aload 3 /* context */
            invokeinterface org.apache.http.protocol.HttpProcessor.process:(Lorg/apache/http/HttpResponse;Lorg/apache/http/protocol/HttpContext;)V
        58: .line 192
            aload 10 /* response */
        59: areturn
        60: .line 193
      StackMap locals: org.apache.http.impl.execchain.ProtocolExec org.apache.http.conn.routing.HttpRoute org.apache.http.client.methods.HttpRequestWrapper org.apache.http.client.protocol.HttpClientContext org.apache.http.client.methods.HttpExecutionAware org.apache.http.HttpRequest java.net.URI org.apache.http.params.HttpParams org.apache.http.HttpHost org.apache.http.HttpHost org.apache.http.client.methods.CloseableHttpResponse
      StackMap stack: java.lang.RuntimeException
            astore 11 /* ex */
        start local 11 // java.lang.RuntimeException ex
        61: .line 194
            aload 10 /* response */
            invokeinterface org.apache.http.client.methods.CloseableHttpResponse.close:()V
        62: .line 195
            aload 11 /* ex */
            athrow
        end local 11 // java.lang.RuntimeException ex
        63: .line 196
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 11 /* ex */
        start local 11 // java.io.IOException ex
        64: .line 197
            aload 10 /* response */
            invokeinterface org.apache.http.client.methods.CloseableHttpResponse.close:()V
        65: .line 198
            aload 11 /* ex */
            athrow
        end local 11 // java.io.IOException ex
        66: .line 199
      StackMap locals:
      StackMap stack: org.apache.http.HttpException
            astore 11 /* ex */
        start local 11 // org.apache.http.HttpException ex
        67: .line 200
            aload 10 /* response */
            invokeinterface org.apache.http.client.methods.CloseableHttpResponse.close:()V
        68: .line 201
            aload 11 /* ex */
            athrow
        end local 11 // org.apache.http.HttpException ex
        end local 10 // org.apache.http.client.methods.CloseableHttpResponse response
        end local 9 // org.apache.http.HttpHost target
        end local 8 // org.apache.http.HttpHost virtualHost
        end local 7 // org.apache.http.params.HttpParams params
        end local 6 // java.net.URI uri
        end local 5 // org.apache.http.HttpRequest original
        end local 4 // org.apache.http.client.methods.HttpExecutionAware execAware
        end local 3 // org.apache.http.client.protocol.HttpClientContext context
        end local 2 // org.apache.http.client.methods.HttpRequestWrapper request
        end local 1 // org.apache.http.conn.routing.HttpRoute route
        end local 0 // org.apache.http.impl.execchain.ProtocolExec this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   69     0           this  Lorg/apache/http/impl/execchain/ProtocolExec;
            0   69     1          route  Lorg/apache/http/conn/routing/HttpRoute;
            0   69     2        request  Lorg/apache/http/client/methods/HttpRequestWrapper;
            0   69     3        context  Lorg/apache/http/client/protocol/HttpClientContext;
            0   69     4      execAware  Lorg/apache/http/client/methods/HttpExecutionAware;
            4   69     5       original  Lorg/apache/http/HttpRequest;
            5   69     6            uri  Ljava/net/URI;
            9   16     7      uriString  Ljava/lang/String;
           12   16     8             ex  Ljava/lang/IllegalArgumentException;
           19   69     7         params  Lorg/apache/http/params/HttpParams;
           20   69     8    virtualHost  Lorg/apache/http/HttpHost;
           22   28     9           port  I
           29   69     9         target  Lorg/apache/http/HttpHost;
           40   49    10       userinfo  Ljava/lang/String;
           42   49    11  credsProvider  Lorg/apache/http/client/CredentialsProvider;
           56   69    10       response  Lorg/apache/http/client/methods/CloseableHttpResponse;
           61   63    11             ex  Ljava/lang/RuntimeException;
           64   66    11             ex  Ljava/io/IOException;
           67   69    11             ex  Lorg/apache/http/HttpException;
      Exception table:
        from    to  target  type
           9    10      11  Class java.lang.IllegalArgumentException
          56    59      60  Class java.lang.RuntimeException
          56    59      63  Class java.io.IOException
          56    59      66  Class org.apache.http.HttpException
    Exceptions:
      throws java.io.IOException, org.apache.http.HttpException
    MethodParameters:
           Name  Flags
      route      final
      request    final
      context    final
      execAware  final
}
SourceFile: "ProtocolExec.java"
    RuntimeInvisibleAnnotations: 
      org.apache.http.annotation.Contract(threading = org.apache.http.annotation.ThreadingBehavior.IMMUTABLE_CONDITIONAL:Lorg/apache/http/annotation/ThreadingBehavior;)