public class org.apache.http.impl.client.EntityEnclosingRequestWrapper extends org.apache.http.impl.client.RequestWrapper implements org.apache.http.HttpEntityEnclosingRequest
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.http.impl.client.EntityEnclosingRequestWrapper
  super_class: org.apache.http.impl.client.RequestWrapper
{
  private org.apache.http.HttpEntity entity;
    descriptor: Lorg/apache/http/HttpEntity;
    flags: (0x0002) ACC_PRIVATE

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

  public void <init>(org.apache.http.HttpEntityEnclosingRequest);
    descriptor: (Lorg/apache/http/HttpEntityEnclosingRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.http.impl.client.EntityEnclosingRequestWrapper this
        start local 1 // org.apache.http.HttpEntityEnclosingRequest request
         0: .line 63
            aload 0 /* this */
            aload 1 /* request */
            invokespecial org.apache.http.impl.client.RequestWrapper.<init>:(Lorg/apache/http/HttpRequest;)V
         1: .line 64
            aload 0 /* this */
            aload 1 /* request */
            invokeinterface org.apache.http.HttpEntityEnclosingRequest.getEntity:()Lorg/apache/http/HttpEntity;
            invokevirtual org.apache.http.impl.client.EntityEnclosingRequestWrapper.setEntity:(Lorg/apache/http/HttpEntity;)V
         2: .line 65
            return
        end local 1 // org.apache.http.HttpEntityEnclosingRequest request
        end local 0 // org.apache.http.impl.client.EntityEnclosingRequestWrapper this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/apache/http/impl/client/EntityEnclosingRequestWrapper;
            0    3     1  request  Lorg/apache/http/HttpEntityEnclosingRequest;
    Exceptions:
      throws org.apache.http.ProtocolException
    MethodParameters:
         Name  Flags
      request  final

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

  public void setEntity(org.apache.http.HttpEntity);
    descriptor: (Lorg/apache/http/HttpEntity;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.http.impl.client.EntityEnclosingRequestWrapper this
        start local 1 // org.apache.http.HttpEntity entity
         0: .line 74
            aload 0 /* this */
            aload 1 /* entity */
            ifnull 1
            new org.apache.http.impl.client.EntityEnclosingRequestWrapper$EntityWrapper
            dup
            aload 0 /* this */
            aload 1 /* entity */
            invokespecial org.apache.http.impl.client.EntityEnclosingRequestWrapper$EntityWrapper.<init>:(Lorg/apache/http/impl/client/EntityEnclosingRequestWrapper;Lorg/apache/http/HttpEntity;)V
            goto 2
      StackMap locals:
      StackMap stack: org.apache.http.impl.client.EntityEnclosingRequestWrapper
         1: aconst_null
      StackMap locals: org.apache.http.impl.client.EntityEnclosingRequestWrapper org.apache.http.HttpEntity
      StackMap stack: org.apache.http.impl.client.EntityEnclosingRequestWrapper org.apache.http.impl.client.EntityEnclosingRequestWrapper$EntityWrapper
         2: putfield org.apache.http.impl.client.EntityEnclosingRequestWrapper.entity:Lorg/apache/http/HttpEntity;
         3: .line 75
            aload 0 /* this */
            iconst_0
            putfield org.apache.http.impl.client.EntityEnclosingRequestWrapper.consumed:Z
         4: .line 76
            return
        end local 1 // org.apache.http.HttpEntity entity
        end local 0 // org.apache.http.impl.client.EntityEnclosingRequestWrapper this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/apache/http/impl/client/EntityEnclosingRequestWrapper;
            0    5     1  entity  Lorg/apache/http/HttpEntity;
    MethodParameters:
        Name  Flags
      entity  final

  public boolean expectContinue();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.http.impl.client.EntityEnclosingRequestWrapper this
         0: .line 80
            aload 0 /* this */
            ldc "Expect"
            invokevirtual org.apache.http.impl.client.EntityEnclosingRequestWrapper.getFirstHeader:(Ljava/lang/String;)Lorg/apache/http/Header;
            astore 1 /* expect */
        start local 1 // org.apache.http.Header expect
         1: .line 81
            aload 1 /* expect */
            ifnull 2
            ldc "100-continue"
            aload 1 /* expect */
            invokeinterface org.apache.http.Header.getValue:()Ljava/lang/String;
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 2
            iconst_1
            ireturn
      StackMap locals: org.apache.http.Header
      StackMap stack:
         2: iconst_0
            ireturn
        end local 1 // org.apache.http.Header expect
        end local 0 // org.apache.http.impl.client.EntityEnclosingRequestWrapper this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/http/impl/client/EntityEnclosingRequestWrapper;
            1    3     1  expect  Lorg/apache/http/Header;

  public boolean isRepeatable();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.impl.client.EntityEnclosingRequestWrapper this
         0: .line 86
            aload 0 /* this */
            getfield org.apache.http.impl.client.EntityEnclosingRequestWrapper.entity:Lorg/apache/http/HttpEntity;
            ifnull 1
            aload 0 /* this */
            getfield org.apache.http.impl.client.EntityEnclosingRequestWrapper.entity:Lorg/apache/http/HttpEntity;
            invokeinterface org.apache.http.HttpEntity.isRepeatable:()Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.http.impl.client.EntityEnclosingRequestWrapper.consumed:Z
            ifeq 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // org.apache.http.impl.client.EntityEnclosingRequestWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/http/impl/client/EntityEnclosingRequestWrapper;
}
SourceFile: "EntityEnclosingRequestWrapper.java"
NestMembers:
  org.apache.http.impl.client.EntityEnclosingRequestWrapper$EntityWrapper
InnerClasses:
  EntityWrapper = org.apache.http.impl.client.EntityEnclosingRequestWrapper$EntityWrapper of org.apache.http.impl.client.EntityEnclosingRequestWrapper
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()