public class io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl implements io.vertx.ext.web.client.predicate.ResponsePredicateResult
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl
  super_class: java.lang.Object
{
  public static final io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl SUCCESS;
    descriptor: Lio/vertx/ext/web/client/impl/predicate/ResponsePredicateResultImpl;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private final boolean passed;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String message;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private io.vertx.ext.web.client.HttpResponse<io.vertx.core.buffer.Buffer> httpResponse;
    descriptor: Lio/vertx/ext/web/client/HttpResponse;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/ext/web/client/HttpResponse<Lio/vertx/core/buffer/Buffer;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 28
            new io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl
            dup
            iconst_1
            aconst_null
            invokespecial io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl.<init>:(ZLjava/lang/String;)V
            putstatic io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl.SUCCESS:Lio/vertx/ext/web/client/impl/predicate/ResponsePredicateResultImpl;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(boolean, java.lang.String);
    descriptor: (ZLjava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl this
        start local 1 // boolean passed
        start local 2 // java.lang.String message
         0: .line 34
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 35
            aload 0 /* this */
            iload 1 /* passed */
            putfield io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl.passed:Z
         2: .line 36
            aload 0 /* this */
            aload 2 /* message */
            putfield io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl.message:Ljava/lang/String;
         3: .line 37
            return
        end local 2 // java.lang.String message
        end local 1 // boolean passed
        end local 0 // io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/ext/web/client/impl/predicate/ResponsePredicateResultImpl;
            0    4     1   passed  Z
            0    4     2  message  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      passed   
      message  

  public boolean succeeded();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl this
         0: .line 41
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl.passed:Z
            ireturn
        end local 0 // io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/client/impl/predicate/ResponsePredicateResultImpl;

  public java.lang.String message();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl this
         0: .line 46
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl.message:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/client/impl/predicate/ResponsePredicateResultImpl;

  public io.vertx.ext.web.client.HttpResponse<io.vertx.core.buffer.Buffer> response();
    descriptor: ()Lio/vertx/ext/web/client/HttpResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl this
         0: .line 51
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl.httpResponse:Lio/vertx/ext/web/client/HttpResponse;
            areturn
        end local 0 // io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/client/impl/predicate/ResponsePredicateResultImpl;
    Signature: ()Lio/vertx/ext/web/client/HttpResponse<Lio/vertx/core/buffer/Buffer;>;

  public io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl setHttpResponse(io.vertx.ext.web.client.HttpResponse<io.vertx.core.buffer.Buffer>);
    descriptor: (Lio/vertx/ext/web/client/HttpResponse;)Lio/vertx/ext/web/client/impl/predicate/ResponsePredicateResultImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl this
        start local 1 // io.vertx.ext.web.client.HttpResponse httpResponse
         0: .line 55
            aload 0 /* this */
            aload 1 /* httpResponse */
            putfield io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl.httpResponse:Lio/vertx/ext/web/client/HttpResponse;
         1: .line 56
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.ext.web.client.HttpResponse httpResponse
        end local 0 // io.vertx.ext.web.client.impl.predicate.ResponsePredicateResultImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lio/vertx/ext/web/client/impl/predicate/ResponsePredicateResultImpl;
            0    2     1  httpResponse  Lio/vertx/ext/web/client/HttpResponse<Lio/vertx/core/buffer/Buffer;>;
    Signature: (Lio/vertx/ext/web/client/HttpResponse<Lio/vertx/core/buffer/Buffer;>;)Lio/vertx/ext/web/client/impl/predicate/ResponsePredicateResultImpl;
    MethodParameters:
              Name  Flags
      httpResponse  
}
SourceFile: "ResponsePredicateResultImpl.java"