final class org.springframework.http.client.BufferingClientHttpResponseWrapper implements org.springframework.http.client.ClientHttpResponse
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.springframework.http.client.BufferingClientHttpResponseWrapper
  super_class: java.lang.Object
{
  private final org.springframework.http.client.ClientHttpResponse response;
    descriptor: Lorg/springframework/http/client/ClientHttpResponse;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private byte[] body;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  void <init>(org.springframework.http.client.ClientHttpResponse);
    descriptor: (Lorg/springframework/http/client/ClientHttpResponse;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.http.client.BufferingClientHttpResponseWrapper this
        start local 1 // org.springframework.http.client.ClientHttpResponse response
         0: .line 43
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 0 /* this */
            aload 1 /* response */
            putfield org.springframework.http.client.BufferingClientHttpResponseWrapper.response:Lorg/springframework/http/client/ClientHttpResponse;
         2: .line 45
            return
        end local 1 // org.springframework.http.client.ClientHttpResponse response
        end local 0 // org.springframework.http.client.BufferingClientHttpResponseWrapper this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/springframework/http/client/BufferingClientHttpResponseWrapper;
            0    3     1  response  Lorg/springframework/http/client/ClientHttpResponse;
    MethodParameters:
          Name  Flags
      response  

  public org.springframework.http.HttpStatus getStatusCode();
    descriptor: ()Lorg/springframework/http/HttpStatus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.http.client.BufferingClientHttpResponseWrapper this
         0: .line 50
            aload 0 /* this */
            getfield org.springframework.http.client.BufferingClientHttpResponseWrapper.response:Lorg/springframework/http/client/ClientHttpResponse;
            invokeinterface org.springframework.http.client.ClientHttpResponse.getStatusCode:()Lorg/springframework/http/HttpStatus;
            areturn
        end local 0 // org.springframework.http.client.BufferingClientHttpResponseWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/http/client/BufferingClientHttpResponseWrapper;
    Exceptions:
      throws java.io.IOException

  public int getRawStatusCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.http.client.BufferingClientHttpResponseWrapper this
         0: .line 55
            aload 0 /* this */
            getfield org.springframework.http.client.BufferingClientHttpResponseWrapper.response:Lorg/springframework/http/client/ClientHttpResponse;
            invokeinterface org.springframework.http.client.ClientHttpResponse.getRawStatusCode:()I
            ireturn
        end local 0 // org.springframework.http.client.BufferingClientHttpResponseWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/http/client/BufferingClientHttpResponseWrapper;
    Exceptions:
      throws java.io.IOException

  public java.lang.String getStatusText();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.http.client.BufferingClientHttpResponseWrapper this
         0: .line 60
            aload 0 /* this */
            getfield org.springframework.http.client.BufferingClientHttpResponseWrapper.response:Lorg/springframework/http/client/ClientHttpResponse;
            invokeinterface org.springframework.http.client.ClientHttpResponse.getStatusText:()Ljava/lang/String;
            areturn
        end local 0 // org.springframework.http.client.BufferingClientHttpResponseWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/http/client/BufferingClientHttpResponseWrapper;
    Exceptions:
      throws java.io.IOException

  public org.springframework.http.HttpHeaders getHeaders();
    descriptor: ()Lorg/springframework/http/HttpHeaders;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.http.client.BufferingClientHttpResponseWrapper this
         0: .line 65
            aload 0 /* this */
            getfield org.springframework.http.client.BufferingClientHttpResponseWrapper.response:Lorg/springframework/http/client/ClientHttpResponse;
            invokeinterface org.springframework.http.client.ClientHttpResponse.getHeaders:()Lorg/springframework/http/HttpHeaders;
            areturn
        end local 0 // org.springframework.http.client.BufferingClientHttpResponseWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/http/client/BufferingClientHttpResponseWrapper;

  public java.io.InputStream getBody();
    descriptor: ()Ljava/io/InputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.springframework.http.client.BufferingClientHttpResponseWrapper this
         0: .line 70
            aload 0 /* this */
            getfield org.springframework.http.client.BufferingClientHttpResponseWrapper.body:[B
            ifnonnull 2
         1: .line 71
            aload 0 /* this */
            aload 0 /* this */
            getfield org.springframework.http.client.BufferingClientHttpResponseWrapper.response:Lorg/springframework/http/client/ClientHttpResponse;
            invokeinterface org.springframework.http.client.ClientHttpResponse.getBody:()Ljava/io/InputStream;
            invokestatic org.springframework.util.StreamUtils.copyToByteArray:(Ljava/io/InputStream;)[B
            putfield org.springframework.http.client.BufferingClientHttpResponseWrapper.body:[B
         2: .line 73
      StackMap locals:
      StackMap stack:
            new java.io.ByteArrayInputStream
            dup
            aload 0 /* this */
            getfield org.springframework.http.client.BufferingClientHttpResponseWrapper.body:[B
            invokespecial java.io.ByteArrayInputStream.<init>:([B)V
            areturn
        end local 0 // org.springframework.http.client.BufferingClientHttpResponseWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/http/client/BufferingClientHttpResponseWrapper;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.http.client.BufferingClientHttpResponseWrapper this
         0: .line 78
            aload 0 /* this */
            getfield org.springframework.http.client.BufferingClientHttpResponseWrapper.response:Lorg/springframework/http/client/ClientHttpResponse;
            invokeinterface org.springframework.http.client.ClientHttpResponse.close:()V
         1: .line 79
            return
        end local 0 // org.springframework.http.client.BufferingClientHttpResponseWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/http/client/BufferingClientHttpResponseWrapper;
}
SourceFile: "BufferingClientHttpResponseWrapper.java"