public final class io.vertx.ext.auth.impl.http.SimpleHttpClient
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.vertx.ext.auth.impl.http.SimpleHttpClient
  super_class: java.lang.Object
{
  private final io.vertx.core.impl.VertxInternal vertx;
    descriptor: Lio/vertx/core/impl/VertxInternal;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.http.HttpClient client;
    descriptor: Lio/vertx/core/http/HttpClient;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  public void <init>(io.vertx.core.Vertx, java.lang.String, io.vertx.core.http.HttpClientOptions);
    descriptor: (Lio/vertx/core/Vertx;Ljava/lang/String;Lio/vertx/core/http/HttpClientOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.ext.auth.impl.http.SimpleHttpClient this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // java.lang.String userAgent
        start local 3 // io.vertx.core.http.HttpClientOptions options
         0: .line 44
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 0 /* this */
            aload 1 /* vertx */
            checkcast io.vertx.core.impl.VertxInternal
            putfield io.vertx.ext.auth.impl.http.SimpleHttpClient.vertx:Lio/vertx/core/impl/VertxInternal;
         2: .line 46
            aload 0 /* this */
            aload 1 /* vertx */
            aload 3 /* options */
            invokeinterface io.vertx.core.Vertx.createHttpClient:(Lio/vertx/core/http/HttpClientOptions;)Lio/vertx/core/http/HttpClient;
            putfield io.vertx.ext.auth.impl.http.SimpleHttpClient.client:Lio/vertx/core/http/HttpClient;
         3: .line 47
            aload 0 /* this */
            aload 2 /* userAgent */
            putfield io.vertx.ext.auth.impl.http.SimpleHttpClient.userAgent:Ljava/lang/String;
         4: .line 48
            return
        end local 3 // io.vertx.core.http.HttpClientOptions options
        end local 2 // java.lang.String userAgent
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.ext.auth.impl.http.SimpleHttpClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lio/vertx/ext/auth/impl/http/SimpleHttpClient;
            0    5     1      vertx  Lio/vertx/core/Vertx;
            0    5     2  userAgent  Ljava/lang/String;
            0    5     3    options  Lio/vertx/core/http/HttpClientOptions;
    MethodParameters:
           Name  Flags
      vertx      
      userAgent  
      options    

  public io.vertx.core.Future<io.vertx.ext.auth.impl.http.SimpleHttpResponse> fetch(io.vertx.core.http.HttpMethod, java.lang.String, io.vertx.core.json.JsonObject, io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/json/JsonObject;Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=5
        start local 0 // io.vertx.ext.auth.impl.http.SimpleHttpClient this
        start local 1 // io.vertx.core.http.HttpMethod method
        start local 2 // java.lang.String url
        start local 3 // io.vertx.core.json.JsonObject headers
        start local 4 // io.vertx.core.buffer.Buffer payload
         0: .line 51
            aload 0 /* this */
            getfield io.vertx.ext.auth.impl.http.SimpleHttpClient.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 5 /* promise */
        start local 5 // io.vertx.core.Promise promise
         1: .line 53
            aload 2 /* url */
            ifnull 2
            aload 2 /* url */
            invokevirtual java.lang.String.length:()I
            ifne 4
         2: .line 54
      StackMap locals: io.vertx.core.Promise
      StackMap stack:
            aload 5 /* promise */
            ldc "Invalid url"
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/String;)V
         3: .line 55
            aload 5 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
         4: .line 58
      StackMap locals:
      StackMap stack:
            new io.vertx.core.http.RequestOptions
            dup
            invokespecial io.vertx.core.http.RequestOptions.<init>:()V
         5: .line 59
            aload 1 /* method */
            invokevirtual io.vertx.core.http.RequestOptions.setMethod:(Lio/vertx/core/http/HttpMethod;)Lio/vertx/core/http/RequestOptions;
         6: .line 60
            aload 2 /* url */
            invokevirtual io.vertx.core.http.RequestOptions.setAbsoluteURI:(Ljava/lang/String;)Lio/vertx/core/http/RequestOptions;
         7: .line 58
            astore 6 /* options */
        start local 6 // io.vertx.core.http.RequestOptions options
         8: .line 63
            aload 0 /* this */
            getfield io.vertx.ext.auth.impl.http.SimpleHttpClient.userAgent:Ljava/lang/String;
            ifnull 10
         9: .line 64
            aload 6 /* options */
            ldc "User-Agent"
            aload 0 /* this */
            getfield io.vertx.ext.auth.impl.http.SimpleHttpClient.userAgent:Ljava/lang/String;
            invokevirtual io.vertx.core.http.RequestOptions.addHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/RequestOptions;
            pop
        10: .line 68
      StackMap locals: io.vertx.core.http.RequestOptions
      StackMap stack:
            aload 3 /* headers */
            ifnull 15
        11: .line 69
            aload 3 /* headers */
            invokevirtual io.vertx.core.json.JsonObject.iterator:()Ljava/util/Iterator;
            astore 8
            goto 14
      StackMap locals: io.vertx.ext.auth.impl.http.SimpleHttpClient io.vertx.core.http.HttpMethod java.lang.String io.vertx.core.json.JsonObject io.vertx.core.buffer.Buffer io.vertx.core.Promise io.vertx.core.http.RequestOptions top java.util.Iterator
      StackMap stack:
        12: aload 8
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 7 /* kv */
        start local 7 // java.util.Map$Entry kv
        13: .line 70
            aload 6 /* options */
            aload 7 /* kv */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
            aload 7 /* kv */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast java.lang.String
            invokevirtual io.vertx.core.http.RequestOptions.addHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/RequestOptions;
            pop
        end local 7 // java.util.Map$Entry kv
        14: .line 69
      StackMap locals:
      StackMap stack:
            aload 8
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 12
        15: .line 74
      StackMap locals: io.vertx.ext.auth.impl.http.SimpleHttpClient io.vertx.core.http.HttpMethod java.lang.String io.vertx.core.json.JsonObject io.vertx.core.buffer.Buffer io.vertx.core.Promise io.vertx.core.http.RequestOptions
      StackMap stack:
            aload 1 /* method */
            getstatic io.vertx.core.http.HttpMethod.POST:Lio/vertx/core/http/HttpMethod;
            if_acmpeq 17
            aload 1 /* method */
            getstatic io.vertx.core.http.HttpMethod.PATCH:Lio/vertx/core/http/HttpMethod;
            if_acmpeq 17
            aload 1 /* method */
            getstatic io.vertx.core.http.HttpMethod.PUT:Lio/vertx/core/http/HttpMethod;
            if_acmpeq 17
        16: .line 75
            aconst_null
            astore 4 /* payload */
        17: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 6 /* options */
            aload 4 /* payload */
            aload 5 /* promise */
            invokevirtual io.vertx.ext.auth.impl.http.SimpleHttpClient.makeRequest:(Lio/vertx/core/http/RequestOptions;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)V
        18: .line 80
            aload 5 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 6 // io.vertx.core.http.RequestOptions options
        end local 5 // io.vertx.core.Promise promise
        end local 4 // io.vertx.core.buffer.Buffer payload
        end local 3 // io.vertx.core.json.JsonObject headers
        end local 2 // java.lang.String url
        end local 1 // io.vertx.core.http.HttpMethod method
        end local 0 // io.vertx.ext.auth.impl.http.SimpleHttpClient this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   19     0     this  Lio/vertx/ext/auth/impl/http/SimpleHttpClient;
            0   19     1   method  Lio/vertx/core/http/HttpMethod;
            0   19     2      url  Ljava/lang/String;
            0   19     3  headers  Lio/vertx/core/json/JsonObject;
            0   19     4  payload  Lio/vertx/core/buffer/Buffer;
            1   19     5  promise  Lio/vertx/core/Promise<Lio/vertx/ext/auth/impl/http/SimpleHttpResponse;>;
            8   19     6  options  Lio/vertx/core/http/RequestOptions;
           13   14     7       kv  Ljava/util/Map$Entry<Ljava/lang/String;Ljava/lang/Object;>;
    Signature: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/json/JsonObject;Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/Future<Lio/vertx/ext/auth/impl/http/SimpleHttpResponse;>;
    MethodParameters:
         Name  Flags
      method   
      url      
      headers  
      payload  

  public io.vertx.ext.auth.impl.http.SimpleHttpClient fetch(io.vertx.core.http.HttpMethod, java.lang.String, io.vertx.core.json.JsonObject, io.vertx.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.auth.impl.http.SimpleHttpResponse>>);
    descriptor: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/json/JsonObject;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)Lio/vertx/ext/auth/impl/http/SimpleHttpClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // io.vertx.ext.auth.impl.http.SimpleHttpClient this
        start local 1 // io.vertx.core.http.HttpMethod method
        start local 2 // java.lang.String url
        start local 3 // io.vertx.core.json.JsonObject headers
        start local 4 // io.vertx.core.buffer.Buffer payload
        start local 5 // io.vertx.core.Handler callback
         0: .line 84
            aload 0 /* this */
            aload 1 /* method */
            aload 2 /* url */
            aload 3 /* headers */
            aload 4 /* payload */
            invokevirtual io.vertx.ext.auth.impl.http.SimpleHttpClient.fetch:(Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/json/JsonObject;Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/Future;
            aload 5 /* callback */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 85
            aload 0 /* this */
            areturn
        end local 5 // io.vertx.core.Handler callback
        end local 4 // io.vertx.core.buffer.Buffer payload
        end local 3 // io.vertx.core.json.JsonObject headers
        end local 2 // java.lang.String url
        end local 1 // io.vertx.core.http.HttpMethod method
        end local 0 // io.vertx.ext.auth.impl.http.SimpleHttpClient this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/vertx/ext/auth/impl/http/SimpleHttpClient;
            0    2     1    method  Lio/vertx/core/http/HttpMethod;
            0    2     2       url  Ljava/lang/String;
            0    2     3   headers  Lio/vertx/core/json/JsonObject;
            0    2     4   payload  Lio/vertx/core/buffer/Buffer;
            0    2     5  callback  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/auth/impl/http/SimpleHttpResponse;>;>;
    Signature: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;Lio/vertx/core/json/JsonObject;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/auth/impl/http/SimpleHttpResponse;>;>;)Lio/vertx/ext/auth/impl/http/SimpleHttpClient;
    MethodParameters:
          Name  Flags
      method    
      url       
      headers   
      payload   
      callback  

  public static io.vertx.core.buffer.Buffer jsonToQuery(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)Lio/vertx/core/buffer/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // io.vertx.core.json.JsonObject json
         0: .line 89
            invokestatic io.vertx.core.buffer.Buffer.buffer:()Lio/vertx/core/buffer/Buffer;
            astore 1 /* buffer */
        start local 1 // io.vertx.core.buffer.Buffer buffer
         1: .line 92
            aload 0 /* json */
            invokevirtual io.vertx.core.json.JsonObject.iterator:()Ljava/util/Iterator;
            astore 3
            goto 10
      StackMap locals: io.vertx.core.json.JsonObject io.vertx.core.buffer.Buffer top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 2 /* kv */
        start local 2 // java.util.Map$Entry kv
         3: .line 93
            aload 1 /* buffer */
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            ifeq 5
         4: .line 94
            aload 1 /* buffer */
            bipush 38
            invokeinterface io.vertx.core.buffer.Buffer.appendByte:(B)Lio/vertx/core/buffer/Buffer;
            pop
         5: .line 96
      StackMap locals: io.vertx.core.json.JsonObject io.vertx.core.buffer.Buffer java.util.Map$Entry java.util.Iterator
      StackMap stack:
            aload 1 /* buffer */
            aload 2 /* kv */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
            ldc "UTF-8"
            invokestatic java.net.URLEncoder.encode:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            invokeinterface io.vertx.core.buffer.Buffer.appendString:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            pop
         6: .line 97
            aload 1 /* buffer */
            bipush 61
            invokeinterface io.vertx.core.buffer.Buffer.appendByte:(B)Lio/vertx/core/buffer/Buffer;
            pop
         7: .line 98
            aload 2 /* kv */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            astore 4 /* v */
        start local 4 // java.lang.Object v
         8: .line 99
            aload 4 /* v */
            ifnull 10
         9: .line 100
            aload 1 /* buffer */
            aload 4 /* v */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            ldc "UTF-8"
            invokestatic java.net.URLEncoder.encode:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            invokeinterface io.vertx.core.buffer.Buffer.appendString:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            pop
        end local 4 // java.lang.Object v
        end local 2 // java.util.Map$Entry kv
        10: .line 92
      StackMap locals: io.vertx.core.json.JsonObject io.vertx.core.buffer.Buffer top java.util.Iterator
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
        11: .line 103
            goto 14
      StackMap locals: io.vertx.core.json.JsonObject io.vertx.core.buffer.Buffer
      StackMap stack: java.io.UnsupportedEncodingException
        12: astore 2 /* e */
        start local 2 // java.io.UnsupportedEncodingException e
        13: .line 104
            new java.lang.RuntimeException
            dup
            aload 2 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.UnsupportedEncodingException e
        14: .line 107
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            areturn
        end local 1 // io.vertx.core.buffer.Buffer buffer
        end local 0 // io.vertx.core.json.JsonObject json
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0    json  Lio/vertx/core/json/JsonObject;
            1   15     1  buffer  Lio/vertx/core/buffer/Buffer;
            3   10     2      kv  Ljava/util/Map$Entry<Ljava/lang/String;*>;
            8   10     4       v  Ljava/lang/Object;
           13   14     2       e  Ljava/io/UnsupportedEncodingException;
      Exception table:
        from    to  target  type
           1    11      12  Class java.io.UnsupportedEncodingException
    MethodParameters:
      Name  Flags
      json  

  public static io.vertx.core.json.JsonObject queryToJson(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/json/JsonObject;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=12, args_size=1
        start local 0 // io.vertx.core.buffer.Buffer query
         0: .line 111
            aload 0 /* query */
            ifnonnull 2
         1: .line 112
            aconst_null
            areturn
         2: .line 114
      StackMap locals:
      StackMap stack:
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 1 /* json */
        start local 1 // io.vertx.core.json.JsonObject json
         3: .line 115
            aload 0 /* query */
            invokeinterface io.vertx.core.buffer.Buffer.toString:()Ljava/lang/String;
            ldc "&"
            invokevirtual java.lang.String.split:(Ljava/lang/String;)[Ljava/lang/String;
            astore 2 /* pairs */
        start local 2 // java.lang.String[] pairs
         4: .line 116
            aload 2 /* pairs */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 28
      StackMap locals: io.vertx.core.buffer.Buffer io.vertx.core.json.JsonObject java.lang.String[] top int int java.lang.String[]
      StackMap stack:
         5: aload 6
            iload 4
            aaload
            astore 3 /* pair */
        start local 3 // java.lang.String pair
         6: .line 117
            aload 3 /* pair */
            ldc "="
            invokevirtual java.lang.String.indexOf:(Ljava/lang/String;)I
            istore 7 /* idx */
        start local 7 // int idx
         7: .line 118
            iload 7 /* idx */
            ifle 8
            aload 3 /* pair */
            iconst_0
            iload 7 /* idx */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            ldc "UTF-8"
            invokestatic java.net.URLDecoder.decode:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            goto 9
      StackMap locals: io.vertx.core.buffer.Buffer io.vertx.core.json.JsonObject java.lang.String[] java.lang.String int int java.lang.String[] int
      StackMap stack:
         8: aload 3 /* pair */
      StackMap locals:
      StackMap stack: java.lang.String
         9: astore 8 /* key */
        start local 8 // java.lang.String key
        10: .line 119
            iload 7 /* idx */
            ifle 11
            aload 3 /* pair */
            invokevirtual java.lang.String.length:()I
            iload 7 /* idx */
            iconst_1
            iadd
            if_icmple 11
            aload 3 /* pair */
            iload 7 /* idx */
            iconst_1
            iadd
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            ldc "UTF-8"
            invokestatic java.net.URLDecoder.decode:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            goto 12
      StackMap locals: java.lang.String
      StackMap stack:
        11: aconst_null
      StackMap locals:
      StackMap stack: java.lang.String
        12: astore 9 /* value */
        start local 9 // java.lang.String value
        13: .line 120
            aload 1 /* json */
            aload 8 /* key */
            invokevirtual io.vertx.core.json.JsonObject.containsKey:(Ljava/lang/String;)Z
            ifne 16
        14: .line 121
            aload 1 /* json */
            aload 8 /* key */
            aload 9 /* value */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
        15: .line 122
            goto 27
        16: .line 123
      StackMap locals: java.lang.String
      StackMap stack:
            aload 1 /* json */
            aload 8 /* key */
            invokevirtual io.vertx.core.json.JsonObject.getValue:(Ljava/lang/String;)Ljava/lang/Object;
            astore 10 /* oldValue */
        start local 10 // java.lang.Object oldValue
        17: .line 125
            aload 10 /* oldValue */
            instanceof io.vertx.core.json.JsonArray
            ifeq 20
        18: .line 126
            aload 10 /* oldValue */
            checkcast io.vertx.core.json.JsonArray
            astore 11 /* array */
        start local 11 // io.vertx.core.json.JsonArray array
        19: .line 127
            goto 23
        end local 11 // io.vertx.core.json.JsonArray array
        20: .line 128
      StackMap locals: java.lang.Object
      StackMap stack:
            new io.vertx.core.json.JsonArray
            dup
            invokespecial io.vertx.core.json.JsonArray.<init>:()V
            astore 11 /* array */
        start local 11 // io.vertx.core.json.JsonArray array
        21: .line 129
            aload 11 /* array */
            aload 10 /* oldValue */
            invokevirtual io.vertx.core.json.JsonArray.add:(Ljava/lang/Object;)Lio/vertx/core/json/JsonArray;
            pop
        22: .line 130
            aload 1 /* json */
            aload 8 /* key */
            aload 11 /* array */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
        23: .line 132
      StackMap locals: io.vertx.core.json.JsonArray
      StackMap stack:
            aload 9 /* value */
            ifnonnull 26
        24: .line 133
            aload 11 /* array */
            invokevirtual io.vertx.core.json.JsonArray.addNull:()Lio/vertx/core/json/JsonArray;
            pop
        25: .line 134
            goto 27
        26: .line 135
      StackMap locals:
      StackMap stack:
            aload 11 /* array */
            aload 9 /* value */
            invokevirtual io.vertx.core.json.JsonArray.add:(Ljava/lang/Object;)Lio/vertx/core/json/JsonArray;
            pop
        end local 11 // io.vertx.core.json.JsonArray array
        end local 10 // java.lang.Object oldValue
        end local 9 // java.lang.String value
        end local 8 // java.lang.String key
        end local 7 // int idx
        end local 3 // java.lang.String pair
        27: .line 116
      StackMap locals: io.vertx.core.buffer.Buffer io.vertx.core.json.JsonObject java.lang.String[] top int int java.lang.String[]
      StackMap stack:
            iinc 4 1
      StackMap locals:
      StackMap stack:
        28: iload 4
            iload 5
            if_icmplt 5
        29: .line 140
            aload 1 /* json */
            areturn
        end local 2 // java.lang.String[] pairs
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.core.buffer.Buffer query
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   30     0     query  Lio/vertx/core/buffer/Buffer;
            3   30     1      json  Lio/vertx/core/json/JsonObject;
            4   30     2     pairs  [Ljava/lang/String;
            6   27     3      pair  Ljava/lang/String;
            7   27     7       idx  I
           10   27     8       key  Ljava/lang/String;
           13   27     9     value  Ljava/lang/String;
           17   27    10  oldValue  Ljava/lang/Object;
           19   20    11     array  Lio/vertx/core/json/JsonArray;
           21   27    11     array  Lio/vertx/core/json/JsonArray;
    Exceptions:
      throws java.io.UnsupportedEncodingException
    MethodParameters:
       Name  Flags
      query  

  private void makeRequest(io.vertx.core.http.RequestOptions, io.vertx.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.auth.impl.http.SimpleHttpResponse>>);
    descriptor: (Lio/vertx/core/http/RequestOptions;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.ext.auth.impl.http.SimpleHttpClient this
        start local 1 // io.vertx.core.http.RequestOptions options
        start local 2 // io.vertx.core.buffer.Buffer payload
        start local 3 // io.vertx.core.Handler callback
         0: .line 145
            aload 0 /* this */
            getfield io.vertx.ext.auth.impl.http.SimpleHttpClient.client:Lio/vertx/core/http/HttpClient;
            aload 1 /* options */
            aload 3 /* callback */
            aload 2 /* payload */
            invokedynamic handle(Lio/vertx/core/Handler;Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/ext/auth/impl/http/SimpleHttpClient.lambda$0(Lio/vertx/core/Handler;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.http.HttpClient.request:(Lio/vertx/core/http/RequestOptions;Lio/vertx/core/Handler;)V
         1: .line 187
            return
        end local 3 // io.vertx.core.Handler callback
        end local 2 // io.vertx.core.buffer.Buffer payload
        end local 1 // io.vertx.core.http.RequestOptions options
        end local 0 // io.vertx.ext.auth.impl.http.SimpleHttpClient this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/vertx/ext/auth/impl/http/SimpleHttpClient;
            0    2     1   options  Lio/vertx/core/http/RequestOptions;
            0    2     2   payload  Lio/vertx/core/buffer/Buffer;
            0    2     3  callback  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/auth/impl/http/SimpleHttpResponse;>;>;
    Signature: (Lio/vertx/core/http/RequestOptions;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/auth/impl/http/SimpleHttpResponse;>;>;)V
    MethodParameters:
          Name  Flags
      options   
      payload   
      callback  final

  private static void lambda$0(io.vertx.core.Handler, io.vertx.core.buffer.Buffer, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=5, args_size=3
        start local 2 // io.vertx.core.AsyncResult request
         0: .line 146
            aload 2 /* request */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
         1: .line 147
            aload 0
            aload 2 /* request */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 148
            return
         3: .line 151
      StackMap locals:
      StackMap stack:
            aload 2 /* request */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.http.HttpClientRequest
            astore 3 /* req */
        start local 3 // io.vertx.core.http.HttpClientRequest req
         4: .line 153
            aload 0
            invokedynamic handle(Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/ext/auth/impl/http/SimpleHttpClient.lambda$1(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            astore 4 /* resultHandler */
        start local 4 // io.vertx.core.Handler resultHandler
         5: .line 181
            aload 1
            ifnull 8
         6: .line 182
            aload 3 /* req */
            aload 1
            aload 4 /* resultHandler */
            invokeinterface io.vertx.core.http.HttpClientRequest.send:(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)V
         7: .line 183
            goto 9
         8: .line 184
      StackMap locals: io.vertx.core.http.HttpClientRequest io.vertx.core.Handler
      StackMap stack:
            aload 3 /* req */
            aload 4 /* resultHandler */
            invokeinterface io.vertx.core.http.HttpClientRequest.send:(Lio/vertx/core/Handler;)V
        end local 4 // io.vertx.core.Handler resultHandler
        end local 3 // io.vertx.core.http.HttpClientRequest req
         9: .line 186
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult request
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   10     2        request  Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpClientRequest;>;
            4    9     3            req  Lio/vertx/core/http/HttpClientRequest;
            5    9     4  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpClientResponse;>;>;

  private static void lambda$1(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
        start local 1 // io.vertx.core.AsyncResult send
         0: .line 154
            aload 1 /* send */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
         1: .line 155
            aload 0
            aload 1 /* send */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 156
            return
         3: .line 159
      StackMap locals:
      StackMap stack:
            aload 1 /* send */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.http.HttpClientResponse
            astore 2 /* res */
        start local 2 // io.vertx.core.http.HttpClientResponse res
         4: .line 162
            aload 2 /* res */
            aload 2 /* res */
            aload 0
            invokedynamic handle(Lio/vertx/core/http/HttpClientResponse;Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/ext/auth/impl/http/SimpleHttpClient.lambda$2(Lio/vertx/core/http/HttpClientResponse;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.http.HttpClientResponse.body:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpClientResponse;
            pop
        end local 2 // io.vertx.core.http.HttpClientResponse res
         5: .line 178
            return
        end local 1 // io.vertx.core.AsyncResult send
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     1  send  Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpClientResponse;>;
            4    5     2   res  Lio/vertx/core/http/HttpClientResponse;

  private static void lambda$2(io.vertx.core.http.HttpClientResponse, io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/http/HttpClientResponse;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=6, locals=4, args_size=3
        start local 2 // io.vertx.core.AsyncResult body
         0: .line 163
            aload 2 /* body */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 10
         1: .line 164
            aload 2 /* body */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.buffer.Buffer
            astore 3 /* value */
        start local 3 // io.vertx.core.buffer.Buffer value
         2: .line 165
            aload 0
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            sipush 200
            if_icmplt 3
            aload 0
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            sipush 300
            if_icmplt 8
         3: .line 166
      StackMap locals: io.vertx.core.buffer.Buffer
      StackMap stack:
            aload 3 /* value */
            ifnull 4
            aload 3 /* value */
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            ifne 6
         4: .line 167
      StackMap locals:
      StackMap stack:
            aload 1
            aload 0
            invokeinterface io.vertx.core.http.HttpClientResponse.statusMessage:()Ljava/lang/String;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         5: .line 168
            goto 11
         6: .line 169
      StackMap locals:
      StackMap stack:
            aload 1
            new java.lang.StringBuilder
            dup
            aload 0
            invokeinterface io.vertx.core.http.HttpClientResponse.statusMessage:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ": "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 3 /* value */
            invokeinterface io.vertx.core.buffer.Buffer.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         7: .line 171
            goto 11
         8: .line 172
      StackMap locals:
      StackMap stack:
            aload 1
            new io.vertx.ext.auth.impl.http.SimpleHttpResponse
            dup
            aload 0
            invokeinterface io.vertx.core.http.HttpClientResponse.statusCode:()I
            aload 0
            invokeinterface io.vertx.core.http.HttpClientResponse.headers:()Lio/vertx/core/MultiMap;
            aload 3 /* value */
            invokespecial io.vertx.ext.auth.impl.http.SimpleHttpResponse.<init>:(ILio/vertx/core/MultiMap;Lio/vertx/core/buffer/Buffer;)V
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 3 // io.vertx.core.buffer.Buffer value
         9: .line 174
            goto 11
        10: .line 175
      StackMap locals:
      StackMap stack:
            aload 1
            aload 2 /* body */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        11: .line 177
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult body
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     2   body  Lio/vertx/core/AsyncResult<Lio/vertx/core/buffer/Buffer;>;
            2    9     3  value  Lio/vertx/core/buffer/Buffer;
}
SourceFile: "SimpleHttpClient.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract Entry = java.util.Map$Entry of java.util.Map