public final class org.springframework.boot.actuate.endpoint.web.WebEndpointResponse<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.springframework.boot.actuate.endpoint.web.WebEndpointResponse
  super_class: java.lang.Object
{
  public static final int STATUS_OK;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 200

  public static final int STATUS_NO_CONTENT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 204

  public static final int STATUS_BAD_REQUEST;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 400

  public static final int STATUS_NOT_FOUND;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 404

  public static final int STATUS_TOO_MANY_REQUESTS;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 429

  public static final int STATUS_INTERNAL_SERVER_ERROR;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 500

  public static final int STATUS_SERVICE_UNAVAILABLE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 503

  private final T body;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TT;

  private final int status;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.boot.actuate.endpoint.web.WebEndpointResponse this
         0: .line 77
            aload 0 /* this */
            aconst_null
            invokespecial org.springframework.boot.actuate.endpoint.web.WebEndpointResponse.<init>:(Ljava/lang/Object;)V
         1: .line 78
            return
        end local 0 // org.springframework.boot.actuate.endpoint.web.WebEndpointResponse this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/boot/actuate/endpoint/web/WebEndpointResponse<TT;>;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.boot.actuate.endpoint.web.WebEndpointResponse this
        start local 1 // int status
         0: .line 86
            aload 0 /* this */
            aconst_null
            iload 1 /* status */
            invokespecial org.springframework.boot.actuate.endpoint.web.WebEndpointResponse.<init>:(Ljava/lang/Object;I)V
         1: .line 87
            return
        end local 1 // int status
        end local 0 // org.springframework.boot.actuate.endpoint.web.WebEndpointResponse this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/springframework/boot/actuate/endpoint/web/WebEndpointResponse<TT;>;
            0    2     1  status  I
    MethodParameters:
        Name  Flags
      status  

  public void <init>();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.boot.actuate.endpoint.web.WebEndpointResponse this
        start local 1 // java.lang.Object body
         0: .line 95
            aload 0 /* this */
            aload 1 /* body */
            sipush 200
            invokespecial org.springframework.boot.actuate.endpoint.web.WebEndpointResponse.<init>:(Ljava/lang/Object;I)V
         1: .line 96
            return
        end local 1 // java.lang.Object body
        end local 0 // org.springframework.boot.actuate.endpoint.web.WebEndpointResponse this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/boot/actuate/endpoint/web/WebEndpointResponse<TT;>;
            0    2     1  body  TT;
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      body  

  public void <init>(T, );
    descriptor: (Ljava/lang/Object;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.springframework.boot.actuate.endpoint.web.WebEndpointResponse this
        start local 1 // java.lang.Object body
        start local 2 // int status
         0: .line 103
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 104
            aload 0 /* this */
            aload 1 /* body */
            putfield org.springframework.boot.actuate.endpoint.web.WebEndpointResponse.body:Ljava/lang/Object;
         2: .line 105
            aload 0 /* this */
            iload 2 /* status */
            putfield org.springframework.boot.actuate.endpoint.web.WebEndpointResponse.status:I
         3: .line 106
            return
        end local 2 // int status
        end local 1 // java.lang.Object body
        end local 0 // org.springframework.boot.actuate.endpoint.web.WebEndpointResponse this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/springframework/boot/actuate/endpoint/web/WebEndpointResponse<TT;>;
            0    4     1    body  TT;
            0    4     2  status  I
    Signature: (TT;I)V
    MethodParameters:
        Name  Flags
      body    
      status  

  public T getBody();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.actuate.endpoint.web.WebEndpointResponse this
         0: .line 113
            aload 0 /* this */
            getfield org.springframework.boot.actuate.endpoint.web.WebEndpointResponse.body:Ljava/lang/Object;
            areturn
        end local 0 // org.springframework.boot.actuate.endpoint.web.WebEndpointResponse this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/actuate/endpoint/web/WebEndpointResponse<TT;>;
    Signature: ()TT;

  public int getStatus();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.actuate.endpoint.web.WebEndpointResponse this
         0: .line 121
            aload 0 /* this */
            getfield org.springframework.boot.actuate.endpoint.web.WebEndpointResponse.status:I
            ireturn
        end local 0 // org.springframework.boot.actuate.endpoint.web.WebEndpointResponse this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/actuate/endpoint/web/WebEndpointResponse<TT;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "WebEndpointResponse.java"