class org.apache.http.impl.execchain.RequestEntityProxy implements org.apache.http.HttpEntity
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.http.impl.execchain.RequestEntityProxy
  super_class: java.lang.Object
{
  private final org.apache.http.HttpEntity original;
    descriptor: Lorg/apache/http/HttpEntity;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  static void enhance(org.apache.http.HttpEntityEnclosingRequest);
    descriptor: (Lorg/apache/http/HttpEntityEnclosingRequest;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.apache.http.HttpEntityEnclosingRequest request
         0: .line 46
            aload 0 /* request */
            invokeinterface org.apache.http.HttpEntityEnclosingRequest.getEntity:()Lorg/apache/http/HttpEntity;
            astore 1 /* entity */
        start local 1 // org.apache.http.HttpEntity entity
         1: .line 47
            aload 1 /* entity */
            ifnull 3
            aload 1 /* entity */
            invokeinterface org.apache.http.HttpEntity.isRepeatable:()Z
            ifne 3
            aload 1 /* entity */
            invokestatic org.apache.http.impl.execchain.RequestEntityProxy.isEnhanced:(Lorg/apache/http/HttpEntity;)Z
            ifne 3
         2: .line 48
            aload 0 /* request */
            new org.apache.http.impl.execchain.RequestEntityProxy
            dup
            aload 1 /* entity */
            invokespecial org.apache.http.impl.execchain.RequestEntityProxy.<init>:(Lorg/apache/http/HttpEntity;)V
            invokeinterface org.apache.http.HttpEntityEnclosingRequest.setEntity:(Lorg/apache/http/HttpEntity;)V
         3: .line 50
      StackMap locals: org.apache.http.HttpEntity
      StackMap stack:
            return
        end local 1 // org.apache.http.HttpEntity entity
        end local 0 // org.apache.http.HttpEntityEnclosingRequest request
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0  request  Lorg/apache/http/HttpEntityEnclosingRequest;
            1    4     1   entity  Lorg/apache/http/HttpEntity;
    MethodParameters:
         Name  Flags
      request  final

  static boolean isEnhanced(org.apache.http.HttpEntity);
    descriptor: (Lorg/apache/http/HttpEntity;)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.HttpEntity entity
         0: .line 53
            aload 0 /* entity */
            instanceof org.apache.http.impl.execchain.RequestEntityProxy
            ireturn
        end local 0 // org.apache.http.HttpEntity entity
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  entity  Lorg/apache/http/HttpEntity;
    MethodParameters:
        Name  Flags
      entity  final

  static boolean isRepeatable(org.apache.http.HttpRequest);
    descriptor: (Lorg/apache/http/HttpRequest;)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=3, args_size=1
        start local 0 // org.apache.http.HttpRequest request
         0: .line 57
            aload 0 /* request */
            instanceof org.apache.http.HttpEntityEnclosingRequest
            ifeq 8
         1: .line 58
            aload 0 /* request */
            checkcast org.apache.http.HttpEntityEnclosingRequest
            invokeinterface org.apache.http.HttpEntityEnclosingRequest.getEntity:()Lorg/apache/http/HttpEntity;
            astore 1 /* entity */
        start local 1 // org.apache.http.HttpEntity entity
         2: .line 59
            aload 1 /* entity */
            ifnull 8
         3: .line 60
            aload 1 /* entity */
            invokestatic org.apache.http.impl.execchain.RequestEntityProxy.isEnhanced:(Lorg/apache/http/HttpEntity;)Z
            ifeq 7
         4: .line 61
            aload 1 /* entity */
            checkcast org.apache.http.impl.execchain.RequestEntityProxy
            astore 2 /* proxy */
        start local 2 // org.apache.http.impl.execchain.RequestEntityProxy proxy
         5: .line 62
            aload 2 /* proxy */
            invokevirtual org.apache.http.impl.execchain.RequestEntityProxy.isConsumed:()Z
            ifne 7
         6: .line 63
            iconst_1
            ireturn
        end local 2 // org.apache.http.impl.execchain.RequestEntityProxy proxy
         7: .line 66
      StackMap locals: org.apache.http.HttpEntity
      StackMap stack:
            aload 1 /* entity */
            invokeinterface org.apache.http.HttpEntity.isRepeatable:()Z
            ireturn
        end local 1 // org.apache.http.HttpEntity entity
         8: .line 69
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 0 // org.apache.http.HttpRequest request
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0  request  Lorg/apache/http/HttpRequest;
            2    8     1   entity  Lorg/apache/http/HttpEntity;
            5    7     2    proxy  Lorg/apache/http/impl/execchain/RequestEntityProxy;
    MethodParameters:
         Name  Flags
      request  final

  void <init>(org.apache.http.HttpEntity);
    descriptor: (Lorg/apache/http/HttpEntity;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
        start local 1 // org.apache.http.HttpEntity original
         0: .line 76
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 73
            aload 0 /* this */
            iconst_0
            putfield org.apache.http.impl.execchain.RequestEntityProxy.consumed:Z
         2: .line 77
            aload 0 /* this */
            aload 1 /* original */
            putfield org.apache.http.impl.execchain.RequestEntityProxy.original:Lorg/apache/http/HttpEntity;
         3: .line 78
            return
        end local 1 // org.apache.http.HttpEntity original
        end local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/apache/http/impl/execchain/RequestEntityProxy;
            0    4     1  original  Lorg/apache/http/HttpEntity;
    MethodParameters:
          Name  Flags
      original  final

  public org.apache.http.HttpEntity getOriginal();
    descriptor: ()Lorg/apache/http/HttpEntity;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
         0: .line 81
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.RequestEntityProxy.original:Lorg/apache/http/HttpEntity;
            areturn
        end local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/impl/execchain/RequestEntityProxy;

  public boolean isConsumed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
         0: .line 85
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.RequestEntityProxy.consumed:Z
            ireturn
        end local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/impl/execchain/RequestEntityProxy;

  public boolean isRepeatable();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
         0: .line 90
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.RequestEntityProxy.original:Lorg/apache/http/HttpEntity;
            invokeinterface org.apache.http.HttpEntity.isRepeatable:()Z
            ireturn
        end local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/impl/execchain/RequestEntityProxy;

  public boolean isChunked();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
         0: .line 95
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.RequestEntityProxy.original:Lorg/apache/http/HttpEntity;
            invokeinterface org.apache.http.HttpEntity.isChunked:()Z
            ireturn
        end local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/impl/execchain/RequestEntityProxy;

  public long getContentLength();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
         0: .line 100
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.RequestEntityProxy.original:Lorg/apache/http/HttpEntity;
            invokeinterface org.apache.http.HttpEntity.getContentLength:()J
            lreturn
        end local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/impl/execchain/RequestEntityProxy;

  public org.apache.http.Header getContentType();
    descriptor: ()Lorg/apache/http/Header;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
         0: .line 105
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.RequestEntityProxy.original:Lorg/apache/http/HttpEntity;
            invokeinterface org.apache.http.HttpEntity.getContentType:()Lorg/apache/http/Header;
            areturn
        end local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/impl/execchain/RequestEntityProxy;

  public org.apache.http.Header getContentEncoding();
    descriptor: ()Lorg/apache/http/Header;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
         0: .line 110
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.RequestEntityProxy.original:Lorg/apache/http/HttpEntity;
            invokeinterface org.apache.http.HttpEntity.getContentEncoding:()Lorg/apache/http/Header;
            areturn
        end local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/impl/execchain/RequestEntityProxy;

  public java.io.InputStream getContent();
    descriptor: ()Ljava/io/InputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
         0: .line 115
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.RequestEntityProxy.original:Lorg/apache/http/HttpEntity;
            invokeinterface org.apache.http.HttpEntity.getContent:()Ljava/io/InputStream;
            areturn
        end local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/impl/execchain/RequestEntityProxy;
    Exceptions:
      throws java.io.IOException, java.lang.IllegalStateException

  public void writeTo(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
        start local 1 // java.io.OutputStream outStream
         0: .line 120
            aload 0 /* this */
            iconst_1
            putfield org.apache.http.impl.execchain.RequestEntityProxy.consumed:Z
         1: .line 121
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.RequestEntityProxy.original:Lorg/apache/http/HttpEntity;
            aload 1 /* outStream */
            invokeinterface org.apache.http.HttpEntity.writeTo:(Ljava/io/OutputStream;)V
         2: .line 122
            return
        end local 1 // java.io.OutputStream outStream
        end local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/apache/http/impl/execchain/RequestEntityProxy;
            0    3     1  outStream  Ljava/io/OutputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      outStream  final

  public boolean isStreaming();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
         0: .line 126
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.RequestEntityProxy.original:Lorg/apache/http/HttpEntity;
            invokeinterface org.apache.http.HttpEntity.isStreaming:()Z
            ireturn
        end local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/impl/execchain/RequestEntityProxy;

  public void consumeContent();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
         0: .line 131
            aload 0 /* this */
            iconst_1
            putfield org.apache.http.impl.execchain.RequestEntityProxy.consumed:Z
         1: .line 132
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.RequestEntityProxy.original:Lorg/apache/http/HttpEntity;
            invokeinterface org.apache.http.HttpEntity.consumeContent:()V
         2: .line 133
            return
        end local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/http/impl/execchain/RequestEntityProxy;
    Exceptions:
      throws java.io.IOException

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
         0: .line 137
            new java.lang.StringBuilder
            dup
            ldc "RequestEntityProxy{"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 138
            aload 1 /* sb */
            aload 0 /* this */
            getfield org.apache.http.impl.execchain.RequestEntityProxy.original:Lorg/apache/http/HttpEntity;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
         2: .line 139
            aload 1 /* sb */
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         3: .line 140
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder sb
        end local 0 // org.apache.http.impl.execchain.RequestEntityProxy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/http/impl/execchain/RequestEntityProxy;
            1    4     1    sb  Ljava/lang/StringBuilder;
}
SourceFile: "RequestEntityProxy.java"