public class org.apache.http.client.entity.GzipCompressingEntity extends org.apache.http.entity.HttpEntityWrapper
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.http.client.entity.GzipCompressingEntity
  super_class: org.apache.http.entity.HttpEntityWrapper
{
  private static final java.lang.String GZIP_CODEC;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "gzip"

  public void <init>(org.apache.http.HttpEntity);
    descriptor: (Lorg/apache/http/HttpEntity;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.http.client.entity.GzipCompressingEntity this
        start local 1 // org.apache.http.HttpEntity entity
         0: .line 79
            aload 0 /* this */
            aload 1 /* entity */
            invokespecial org.apache.http.entity.HttpEntityWrapper.<init>:(Lorg/apache/http/HttpEntity;)V
         1: .line 80
            return
        end local 1 // org.apache.http.HttpEntity entity
        end local 0 // org.apache.http.client.entity.GzipCompressingEntity this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/http/client/entity/GzipCompressingEntity;
            0    2     1  entity  Lorg/apache/http/HttpEntity;
    MethodParameters:
        Name  Flags
      entity  final

  public org.apache.http.Header getContentEncoding();
    descriptor: ()Lorg/apache/http/Header;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.http.client.entity.GzipCompressingEntity this
         0: .line 84
            new org.apache.http.message.BasicHeader
            dup
            ldc "Content-Encoding"
            ldc "gzip"
            invokespecial org.apache.http.message.BasicHeader.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            areturn
        end local 0 // org.apache.http.client.entity.GzipCompressingEntity this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/client/entity/GzipCompressingEntity;

  public long getContentLength();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.http.client.entity.GzipCompressingEntity this
         0: .line 89
            ldc -1
            lreturn
        end local 0 // org.apache.http.client.entity.GzipCompressingEntity this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/client/entity/GzipCompressingEntity;

  public boolean isChunked();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.client.entity.GzipCompressingEntity this
         0: .line 95
            iconst_1
            ireturn
        end local 0 // org.apache.http.client.entity.GzipCompressingEntity this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/client/entity/GzipCompressingEntity;

  public java.io.InputStream getContent();
    descriptor: ()Ljava/io/InputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.http.client.entity.GzipCompressingEntity this
         0: .line 100
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // org.apache.http.client.entity.GzipCompressingEntity this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/client/entity/GzipCompressingEntity;
    Exceptions:
      throws java.io.IOException

  public void writeTo(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.http.client.entity.GzipCompressingEntity this
        start local 1 // java.io.OutputStream outStream
         0: .line 105
            aload 1 /* outStream */
            ldc "Output stream"
            invokestatic org.apache.http.util.Args.notNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 106
            new java.util.zip.GZIPOutputStream
            dup
            aload 1 /* outStream */
            invokespecial java.util.zip.GZIPOutputStream.<init>:(Ljava/io/OutputStream;)V
            astore 2 /* gzip */
        start local 2 // java.util.zip.GZIPOutputStream gzip
         2: .line 107
            aload 0 /* this */
            getfield org.apache.http.client.entity.GzipCompressingEntity.wrappedEntity:Lorg/apache/http/HttpEntity;
            aload 2 /* gzip */
            invokeinterface org.apache.http.HttpEntity.writeTo:(Ljava/io/OutputStream;)V
         3: .line 110
            aload 2 /* gzip */
            invokevirtual java.util.zip.GZIPOutputStream.close:()V
         4: .line 111
            return
        end local 2 // java.util.zip.GZIPOutputStream gzip
        end local 1 // java.io.OutputStream outStream
        end local 0 // org.apache.http.client.entity.GzipCompressingEntity this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/apache/http/client/entity/GzipCompressingEntity;
            0    5     1  outStream  Ljava/io/OutputStream;
            2    5     2       gzip  Ljava/util/zip/GZIPOutputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      outStream  final
}
SourceFile: "GzipCompressingEntity.java"