public class io.vertx.config.vault.VaultConfigStore implements io.vertx.config.spi.ConfigStore
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.config.vault.VaultConfigStore
  super_class: java.lang.Object
{
  private final io.vertx.config.vault.client.SlimVaultClient client;
    descriptor: Lio/vertx/config/vault/client/SlimVaultClient;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.json.JsonObject config;
    descriptor: Lio/vertx/core/json/JsonObject;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  private boolean renewable;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private long validity;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.Context context;
    descriptor: Lio/vertx/core/Context;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(io.vertx.core.Vertx, io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.vertx.config.vault.VaultConfigStore this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.core.json.JsonObject config
         0: .line 58
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 59
            aload 0 /* this */
            new io.vertx.config.vault.client.SlimVaultClient
            dup
            aload 1 /* vertx */
            aload 2 /* config */
            invokespecial io.vertx.config.vault.client.SlimVaultClient.<init>:(Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;)V
            putfield io.vertx.config.vault.VaultConfigStore.client:Lio/vertx/config/vault/client/SlimVaultClient;
         2: .line 60
            aload 0 /* this */
            aload 2 /* config */
            putfield io.vertx.config.vault.VaultConfigStore.config:Lio/vertx/core/json/JsonObject;
         3: .line 61
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.config.vault.VaultConfigStore.vertx:Lio/vertx/core/Vertx;
         4: .line 62
            aload 0 /* this */
            aload 2 /* config */
            ldc "path"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            ldc "The path of the secret must be set"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.lang.String
            putfield io.vertx.config.vault.VaultConfigStore.path:Ljava/lang/String;
         5: .line 63
            return
        end local 2 // io.vertx.core.json.JsonObject config
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lio/vertx/config/vault/VaultConfigStore;
            0    6     1   vertx  Lio/vertx/core/Vertx;
            0    6     2  config  Lio/vertx/core/json/JsonObject;
    MethodParameters:
        Name  Flags
      vertx   
      config  

  public void close(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.config.vault.VaultConfigStore this
        start local 1 // io.vertx.core.Handler completionHandler
         0: .line 67
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.client:Lio/vertx/config/vault/client/SlimVaultClient;
            invokevirtual io.vertx.config.vault.client.SlimVaultClient.close:()V
         1: .line 68
            aload 1 /* completionHandler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 69
            return
        end local 1 // io.vertx.core.Handler completionHandler
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    3     0               this  Lio/vertx/config/vault/VaultConfigStore;
            0    3     1  completionHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)V
    MethodParameters:
                   Name  Flags
      completionHandler  

  public void get(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.buffer.Buffer>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.config.vault.VaultConfigStore this
        start local 1 // io.vertx.core.Handler completionHandler
         0: .line 73
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.context:Lio/vertx/core/Context;
            ifnonnull 2
         1: .line 74
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.getOrCreateContext:()Lio/vertx/core/Context;
            putfield io.vertx.config.vault.VaultConfigStore.context:Lio/vertx/core/Context;
         2: .line 77
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* completionHandler */
            invokedynamic handle(Lio/vertx/config/vault/VaultConfigStore;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/config/vault/VaultConfigStore.lambda$0(Lio/vertx/core/Handler;Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            astore 2 /* actions */
        start local 2 // io.vertx.core.Handler actions
         3: .line 85
            invokestatic io.vertx.core.Vertx.currentContext:()Lio/vertx/core/Context;
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.context:Lio/vertx/core/Context;
            if_acmpne 6
         4: .line 86
            aload 2 /* actions */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         5: .line 87
            goto 7
         6: .line 88
      StackMap locals: io.vertx.core.Handler
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.context:Lio/vertx/core/Context;
            aload 2 /* actions */
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
         7: .line 90
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.Handler actions
        end local 1 // io.vertx.core.Handler completionHandler
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    8     0               this  Lio/vertx/config/vault/VaultConfigStore;
            0    8     1  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/buffer/Buffer;>;>;
            3    8     2            actions  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/buffer/Buffer;>;>;)V
    MethodParameters:
                   Name  Flags
      completionHandler  

  private io.vertx.core.Future<io.vertx.core.buffer.Buffer> extract(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.vertx.config.vault.VaultConfigStore this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 93
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 2 /* promise */
        start local 2 // io.vertx.core.Promise promise
         1: .line 94
            aload 1 /* json */
            ifnonnull 4
         2: .line 95
            aload 2 /* promise */
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            invokevirtual io.vertx.core.json.JsonObject.toBuffer:()Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         3: .line 96
            goto 16
      StackMap locals: io.vertx.core.Promise
      StackMap stack:
         4: aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.config:Lio/vertx/core/json/JsonObject;
            ldc "key"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            ifnull 15
         5: .line 97
            aload 1 /* json */
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.config:Lio/vertx/core/json/JsonObject;
            ldc "key"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual io.vertx.core.json.JsonObject.getValue:(Ljava/lang/String;)Ljava/lang/Object;
            astore 3 /* value */
        start local 3 // java.lang.Object value
         6: .line 98
            aload 3 /* value */
            ifnonnull 9
         7: .line 99
            aload 2 /* promise */
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            invokevirtual io.vertx.core.json.JsonObject.toBuffer:()Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         8: .line 100
            goto 16
      StackMap locals: java.lang.Object
      StackMap stack:
         9: aload 3 /* value */
            instanceof java.lang.String
            ifeq 12
        10: .line 101
            aload 2 /* promise */
            aload 3 /* value */
            checkcast java.lang.String
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
        11: .line 102
            goto 16
      StackMap locals:
      StackMap stack:
        12: aload 3 /* value */
            instanceof io.vertx.core.json.JsonObject
            ifeq 16
        13: .line 103
            aload 2 /* promise */
            aload 3 /* value */
            checkcast io.vertx.core.json.JsonObject
            invokevirtual io.vertx.core.json.JsonObject.toBuffer:()Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
        end local 3 // java.lang.Object value
        14: .line 105
            goto 16
        15: .line 106
      StackMap locals:
      StackMap stack:
            aload 2 /* promise */
            aload 1 /* json */
            invokevirtual io.vertx.core.json.JsonObject.toBuffer:()Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
        16: .line 108
      StackMap locals:
      StackMap stack:
            aload 2 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.core.Promise promise
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   17     0     this  Lio/vertx/config/vault/VaultConfigStore;
            0   17     1     json  Lio/vertx/core/json/JsonObject;
            1   17     2  promise  Lio/vertx/core/Promise<Lio/vertx/core/buffer/Buffer;>;
            6   14     3    value  Ljava/lang/Object;
    Signature: (Lio/vertx/core/json/JsonObject;)Lio/vertx/core/Future<Lio/vertx/core/buffer/Buffer;>;
    MethodParameters:
      Name  Flags
      json  

  private io.vertx.core.Future<io.vertx.core.json.JsonObject> retrieve();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.config.vault.VaultConfigStore this
         0: .line 112
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 1 /* promise */
        start local 1 // io.vertx.core.Promise promise
         1: .line 113
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.client:Lio/vertx/config/vault/client/SlimVaultClient;
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.path:Ljava/lang/String;
            aload 1 /* promise */
            invokedynamic handle(Lio/vertx/core/Promise;)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/config/vault/VaultConfigStore.lambda$4(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.config.vault.client.SlimVaultClient.read:(Ljava/lang/String;Lio/vertx/core/Handler;)V
         2: .line 129
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/config/vault/VaultConfigStore;
            1    3     1  promise  Lio/vertx/core/Promise<Lio/vertx/core/json/JsonObject;>;
    Signature: ()Lio/vertx/core/Future<Lio/vertx/core/json/JsonObject;>;

  private io.vertx.core.Future<java.lang.Void> renew();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // io.vertx.config.vault.VaultConfigStore this
         0: .line 133
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 1 /* promise */
        start local 1 // io.vertx.core.Promise promise
         1: .line 134
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.validity:J
            lconst_0
            lcmp
            ifne 4
         2: .line 136
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.complete:()V
         3: .line 137
            goto 9
         4: .line 138
      StackMap locals: io.vertx.core.Promise
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.config.vault.VaultConfigStore.shouldBeRenewed:()Z
            ifeq 6
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.renewable:Z
            ifeq 6
         5: .line 139
            aload 0 /* this */
            invokevirtual io.vertx.config.vault.VaultConfigStore.renewToken:()Lio/vertx/core/Future;
            areturn
         6: .line 140
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.config.vault.VaultConfigStore.shouldBeRenewed:()Z
            ifeq 8
         7: .line 142
            aload 0 /* this */
            iconst_1
            invokevirtual io.vertx.config.vault.VaultConfigStore.authenticate:(Z)Lio/vertx/core/Future;
            areturn
         8: .line 144
      StackMap locals:
      StackMap stack:
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.complete:()V
         9: .line 147
      StackMap locals:
      StackMap stack:
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lio/vertx/config/vault/VaultConfigStore;
            1   10     1  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  private io.vertx.core.Future<java.lang.Void> renewToken();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // io.vertx.config.vault.VaultConfigStore this
         0: .line 151
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 1 /* promise */
        start local 1 // io.vertx.core.Promise promise
         1: .line 152
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.client:Lio/vertx/config/vault/client/SlimVaultClient;
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.config:Lio/vertx/core/json/JsonObject;
            ldc "lease-duration"
            ldc 3600
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokevirtual io.vertx.core.json.JsonObject.getLong:(Ljava/lang/String;Ljava/lang/Long;)Ljava/lang/Long;
            invokevirtual java.lang.Long.longValue:()J
            aload 0 /* this */
            aload 1 /* promise */
            invokedynamic handle(Lio/vertx/config/vault/VaultConfigStore;Lio/vertx/core/Promise;)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/config/vault/VaultConfigStore.lambda$5(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.config.vault.client.SlimVaultClient.renewSelf:(JLio/vertx/core/Handler;)V
         2: .line 155
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/config/vault/VaultConfigStore;
            1    3     1  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  private io.vertx.core.Future<java.lang.Void> authenticate(boolean);
    descriptor: (Z)Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // io.vertx.config.vault.VaultConfigStore this
        start local 1 // boolean renew
         0: .line 160
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 2 /* promise */
        start local 2 // io.vertx.core.Promise promise
         1: .line 161
            iload 1 /* renew */
            ifne 4
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.client:Lio/vertx/config/vault/client/SlimVaultClient;
            invokevirtual io.vertx.config.vault.client.SlimVaultClient.getToken:()Ljava/lang/String;
            ifnull 4
         2: .line 162
            aload 2 /* promise */
            invokeinterface io.vertx.core.Promise.complete:()V
         3: .line 163
            aload 2 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
         4: .line 166
      StackMap locals: io.vertx.core.Promise
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.config:Lio/vertx/core/json/JsonObject;
            ldc "auth-backend"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            astore 3 /* policy */
        start local 3 // java.lang.String policy
         5: .line 167
            aload 3 /* policy */
            ldc "If you don't provide a token, the auth-backend must be set"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         6: .line 168
            aload 3 /* policy */
            invokevirtual java.lang.String.toLowerCase:()Ljava/lang/String;
            dup
            astore 4
            invokevirtual java.lang.String.hashCode:()I
            lookupswitch { // 4
           -793050601: 7
           -265653668: 8
              3050020: 9
            110541305: 10
              default: 15
          }
      StackMap locals: java.lang.String java.lang.String
      StackMap stack:
         7: aload 4
            ldc "approle"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 12
            goto 15
      StackMap locals:
      StackMap stack:
         8: aload 4
            ldc "userpass"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 14
            goto 15
      StackMap locals:
      StackMap stack:
         9: aload 4
            ldc "cert"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 13
            goto 15
      StackMap locals:
      StackMap stack:
        10: aload 4
            ldc "token"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 11
            goto 15
        11: .line 170
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.config.vault.VaultConfigStore.loginWithToken:()Lio/vertx/core/Future;
            areturn
        12: .line 172
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.config.vault.VaultConfigStore.loginWithAppRole:()Lio/vertx/core/Future;
            areturn
        13: .line 174
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.config.vault.VaultConfigStore.loginWithCert:()Lio/vertx/core/Future;
            areturn
        14: .line 176
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.config.vault.VaultConfigStore.loginWithUserName:()Lio/vertx/core/Future;
            areturn
        15: .line 178
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Non supported auth-backend: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* policy */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // java.lang.String policy
        end local 2 // io.vertx.core.Promise promise
        end local 1 // boolean renew
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Lio/vertx/config/vault/VaultConfigStore;
            0   16     1    renew  Z
            1   16     2  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
            5   16     3   policy  Ljava/lang/String;
    Signature: (Z)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
       Name  Flags
      renew  

  private io.vertx.core.Future<java.lang.Void> loginWithUserName();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // io.vertx.config.vault.VaultConfigStore this
         0: .line 183
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 1 /* promise */
        start local 1 // io.vertx.core.Promise promise
         1: .line 184
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.config:Lio/vertx/core/json/JsonObject;
            ldc "user-credentials"
            invokevirtual io.vertx.core.json.JsonObject.getJsonObject:(Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 2 /* req */
        start local 2 // io.vertx.core.json.JsonObject req
         2: .line 185
            aload 2 /* req */
            ldc "When using username, the `user-credentials` must be set in the configuration"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         3: .line 187
            aload 2 /* req */
            ldc "username"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            astore 3 /* username */
        start local 3 // java.lang.String username
         4: .line 188
            aload 2 /* req */
            ldc "password"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            astore 4 /* password */
        start local 4 // java.lang.String password
         5: .line 189
            aload 2 /* req */
            ldc "token"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            pop
         6: .line 191
            aload 3 /* username */
            ldc "When using userpass, the username must be set in the `user-credentials` configuration"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         7: .line 193
            aload 4 /* password */
            ldc "When using userpass, the password must be set in the `user-credentials` configuration"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         8: .line 197
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.client:Lio/vertx/config/vault/client/SlimVaultClient;
         9: .line 198
            aload 3 /* username */
            aload 4 /* password */
            aload 0 /* this */
            aload 1 /* promise */
            invokedynamic handle(Lio/vertx/config/vault/VaultConfigStore;Lio/vertx/core/Promise;)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/config/vault/VaultConfigStore.lambda$6(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.config.vault.client.SlimVaultClient.loginWithUserCredentials:(Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)V
        10: .line 199
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 4 // java.lang.String password
        end local 3 // java.lang.String username
        end local 2 // io.vertx.core.json.JsonObject req
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lio/vertx/config/vault/VaultConfigStore;
            1   11     1   promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
            2   11     2       req  Lio/vertx/core/json/JsonObject;
            4   11     3  username  Ljava/lang/String;
            5   11     4  password  Ljava/lang/String;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  private io.vertx.core.Future<java.lang.Void> loginWithCert();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.config.vault.VaultConfigStore this
         0: .line 203
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 1 /* promise */
        start local 1 // io.vertx.core.Promise promise
         1: .line 205
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.client:Lio/vertx/config/vault/client/SlimVaultClient;
            aload 0 /* this */
            aload 1 /* promise */
            invokedynamic handle(Lio/vertx/config/vault/VaultConfigStore;Lio/vertx/core/Promise;)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/config/vault/VaultConfigStore.lambda$7(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.config.vault.client.SlimVaultClient.loginWithCert:(Lio/vertx/core/Handler;)V
         2: .line 206
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/config/vault/VaultConfigStore;
            1    3     1  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  private io.vertx.core.Future<java.lang.Void> loginWithAppRole();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // io.vertx.config.vault.VaultConfigStore this
         0: .line 211
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 1 /* promise */
        start local 1 // io.vertx.core.Promise promise
         1: .line 212
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.config:Lio/vertx/core/json/JsonObject;
            ldc "approle"
            invokevirtual io.vertx.core.json.JsonObject.getJsonObject:(Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 2 /* req */
        start local 2 // io.vertx.core.json.JsonObject req
         2: .line 213
            aload 2 /* req */
            ldc "When using approle, the `app-role` must be set in the configuration"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         3: .line 215
            aload 2 /* req */
            ldc "role-id"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            astore 3 /* roleId */
        start local 3 // java.lang.String roleId
         4: .line 216
            aload 2 /* req */
            ldc "secret-id"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            astore 4 /* secretId */
        start local 4 // java.lang.String secretId
         5: .line 218
            aload 3 /* roleId */
            ldc "When using approle, the role-id must be set in the `approle` configuration"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         6: .line 219
            aload 4 /* secretId */
            ldc "When using approle, the secret-id must be set in the `approle` configuration"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         7: .line 221
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.client:Lio/vertx/config/vault/client/SlimVaultClient;
            aload 3 /* roleId */
            aload 4 /* secretId */
            aload 0 /* this */
            aload 1 /* promise */
            invokedynamic handle(Lio/vertx/config/vault/VaultConfigStore;Lio/vertx/core/Promise;)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/config/vault/VaultConfigStore.lambda$8(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.config.vault.client.SlimVaultClient.loginWithAppRole:(Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)V
         8: .line 222
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 4 // java.lang.String secretId
        end local 3 // java.lang.String roleId
        end local 2 // io.vertx.core.json.JsonObject req
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lio/vertx/config/vault/VaultConfigStore;
            1    9     1   promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
            2    9     2       req  Lio/vertx/core/json/JsonObject;
            4    9     3    roleId  Ljava/lang/String;
            5    9     4  secretId  Ljava/lang/String;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  private io.vertx.core.Future<java.lang.Void> loginWithToken();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // io.vertx.config.vault.VaultConfigStore this
         0: .line 226
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 1 /* promise */
        start local 1 // io.vertx.core.Promise promise
         1: .line 227
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.config:Lio/vertx/core/json/JsonObject;
            ldc "token-request"
            invokevirtual io.vertx.core.json.JsonObject.getJsonObject:(Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 2 /* req */
        start local 2 // io.vertx.core.json.JsonObject req
         2: .line 228
            aload 2 /* req */
            ldc "When using a token creation policy, the `token-request` must be set in the configuration"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         3: .line 231
            aload 2 /* req */
            ldc "token"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            astore 3 /* token */
        start local 3 // java.lang.String token
         4: .line 232
            aload 2 /* req */
            ldc "When using a token creation policy, the `token-request` must be set in the configuration and contains the `token` entry with the original token"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         5: .line 234
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.client:Lio/vertx/config/vault/client/SlimVaultClient;
         6: .line 235
            aload 3 /* token */
            invokevirtual io.vertx.config.vault.client.SlimVaultClient.setToken:(Ljava/lang/String;)Lio/vertx/config/vault/client/SlimVaultClient;
         7: .line 236
            new io.vertx.config.vault.client.TokenRequest
            dup
            aload 2 /* req */
            invokespecial io.vertx.config.vault.client.TokenRequest.<init>:(Lio/vertx/core/json/JsonObject;)V
            aload 0 /* this */
            aload 1 /* promise */
            invokedynamic handle(Lio/vertx/config/vault/VaultConfigStore;Lio/vertx/core/Promise;)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/config/vault/VaultConfigStore.lambda$9(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.config.vault.client.SlimVaultClient.createToken:(Lio/vertx/config/vault/client/TokenRequest;Lio/vertx/core/Handler;)V
         8: .line 237
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 3 // java.lang.String token
        end local 2 // io.vertx.core.json.JsonObject req
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lio/vertx/config/vault/VaultConfigStore;
            1    9     1  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
            2    9     2      req  Lio/vertx/core/json/JsonObject;
            4    9     3    token  Ljava/lang/String;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  private void manageAuthenticationResult(io.vertx.core.Promise<java.lang.Void>, io.vertx.core.AsyncResult<io.vertx.config.vault.client.Auth>);
    descriptor: (Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // io.vertx.config.vault.VaultConfigStore this
        start local 1 // io.vertx.core.Promise future
        start local 2 // io.vertx.core.AsyncResult auth
         0: .line 241
            aload 2 /* auth */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
         1: .line 242
            aload 1 /* future */
            aload 2 /* auth */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/Throwable;)V
         2: .line 243
            goto 11
         3: .line 244
      StackMap locals:
      StackMap stack:
            aload 2 /* auth */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.config.vault.client.Auth
            astore 3 /* authentication */
        start local 3 // io.vertx.config.vault.client.Auth authentication
         4: .line 245
            aload 3 /* authentication */
            invokevirtual io.vertx.config.vault.client.Auth.getToken:()Ljava/lang/String;
            ifnonnull 7
         5: .line 246
            aload 1 /* future */
            ldc "Authentication failed, the token is null"
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/String;)V
         6: .line 247
            goto 11
         7: .line 248
      StackMap locals: io.vertx.config.vault.client.Auth
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.client:Lio/vertx/config/vault/client/SlimVaultClient;
            aload 3 /* authentication */
            invokevirtual io.vertx.config.vault.client.Auth.getToken:()Ljava/lang/String;
            invokevirtual io.vertx.config.vault.client.SlimVaultClient.setToken:(Ljava/lang/String;)Lio/vertx/config/vault/client/SlimVaultClient;
            pop
         8: .line 249
            aload 0 /* this */
            aload 3 /* authentication */
            invokevirtual io.vertx.config.vault.client.Auth.isRenewable:()Z
            putfield io.vertx.config.vault.VaultConfigStore.renewable:Z
         9: .line 250
            aload 0 /* this */
            invokestatic java.lang.System.currentTimeMillis:()J
            aload 3 /* authentication */
            invokevirtual io.vertx.config.vault.client.Auth.getLeaseDuration:()J
            ldc 1000
            lmul
            ladd
            putfield io.vertx.config.vault.VaultConfigStore.validity:J
        10: .line 251
            aload 1 /* future */
            invokeinterface io.vertx.core.Promise.complete:()V
        end local 3 // io.vertx.config.vault.client.Auth authentication
        11: .line 254
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult auth
        end local 1 // io.vertx.core.Promise future
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   12     0            this  Lio/vertx/config/vault/VaultConfigStore;
            0   12     1          future  Lio/vertx/core/Promise<Ljava/lang/Void;>;
            0   12     2            auth  Lio/vertx/core/AsyncResult<Lio/vertx/config/vault/client/Auth;>;
            4   11     3  authentication  Lio/vertx/config/vault/client/Auth;
    Signature: (Lio/vertx/core/Promise<Ljava/lang/Void;>;Lio/vertx/core/AsyncResult<Lio/vertx/config/vault/client/Auth;>;)V
    MethodParameters:
        Name  Flags
      future  
      auth    

  private boolean shouldBeRenewed();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=5, args_size=1
        start local 0 // io.vertx.config.vault.VaultConfigStore this
         0: .line 262
            invokestatic java.lang.System.currentTimeMillis:()J
            lstore 1 /* now */
        start local 1 // long now
         1: .line 263
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.config:Lio/vertx/core/json/JsonObject;
            ldc "renew-window"
            ldc 60000
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokevirtual io.vertx.core.json.JsonObject.getLong:(Ljava/lang/String;Ljava/lang/Long;)Ljava/lang/Long;
            invokevirtual java.lang.Long.longValue:()J
            lstore 3 /* margin */
        start local 3 // long margin
         2: .line 264
            lload 1 /* now */
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.validity:J
            lload 3 /* margin */
            lsub
            lcmp
            iflt 3
            iconst_1
            ireturn
      StackMap locals: long long
      StackMap stack:
         3: iconst_0
            ireturn
        end local 3 // long margin
        end local 1 // long now
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/vertx/config/vault/VaultConfigStore;
            1    4     1     now  J
            2    4     3  margin  J

  public io.vertx.config.vault.client.SlimVaultClient getVaultClient();
    descriptor: ()Lio/vertx/config/vault/client/SlimVaultClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.config.vault.VaultConfigStore this
         0: .line 271
            aload 0 /* this */
            getfield io.vertx.config.vault.VaultConfigStore.client:Lio/vertx/config/vault/client/SlimVaultClient;
            areturn
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/config/vault/VaultConfigStore;

  private void lambda$0(io.vertx.core.Handler, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.config.vault.VaultConfigStore this
        start local 2 // java.lang.Void x
         0: .line 78
            aload 0 /* this */
            iconst_0
            invokevirtual io.vertx.config.vault.VaultConfigStore.authenticate:(Z)Lio/vertx/core/Future;
         1: .line 79
            aload 0 /* this */
            invokedynamic apply(Lio/vertx/config/vault/VaultConfigStore;)Ljava/util/function/Function;
              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;)Ljava/lang/Object;
                  io/vertx/config/vault/VaultConfigStore.lambda$1(Ljava/lang/Void;)Lio/vertx/core/Future; (7)
                  (Ljava/lang/Void;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.compose:(Ljava/util/function/Function;)Lio/vertx/core/Future;
         2: .line 80
            aload 0 /* this */
            invokedynamic apply(Lio/vertx/config/vault/VaultConfigStore;)Ljava/util/function/Function;
              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;)Ljava/lang/Object;
                  io/vertx/config/vault/VaultConfigStore.lambda$2(Ljava/lang/Void;)Lio/vertx/core/Future; (7)
                  (Ljava/lang/Void;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.compose:(Ljava/util/function/Function;)Lio/vertx/core/Future;
         3: .line 81
            aload 0 /* this */
            invokedynamic apply(Lio/vertx/config/vault/VaultConfigStore;)Ljava/util/function/Function;
              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;)Ljava/lang/Object;
                  io/vertx/config/vault/VaultConfigStore.extract(Lio/vertx/core/json/JsonObject;)Lio/vertx/core/Future; (7)
                  (Lio/vertx/core/json/JsonObject;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.compose:(Ljava/util/function/Function;)Lio/vertx/core/Future;
         4: .line 82
            aload 1
            invokeinterface io.vertx.core.Future.setHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         5: .line 83
            return
        end local 2 // java.lang.Void x
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/config/vault/VaultConfigStore;
            0    6     2     x  Ljava/lang/Void;

  private static void lambda$4(io.vertx.core.Promise, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=2
        start local 1 // io.vertx.core.AsyncResult ar
         0: .line 114
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            instanceof io.vertx.config.vault.client.VaultException
            ifne 3
         1: .line 115
            aload 0
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/Throwable;)V
         2: .line 116
            goto 15
      StackMap locals:
      StackMap stack:
         3: aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 6
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            checkcast io.vertx.config.vault.client.VaultException
            invokevirtual io.vertx.config.vault.client.VaultException.getStatusCode:()I
            sipush 404
            if_icmpne 6
         4: .line 117
            aload 0
            aconst_null
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         5: .line 118
            goto 15
      StackMap locals:
      StackMap stack:
         6: aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 9
         7: .line 119
            aload 0
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/Throwable;)V
         8: .line 120
            goto 15
         9: .line 121
      StackMap locals:
      StackMap stack:
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.config.vault.client.Secret
            astore 2 /* result */
        start local 2 // io.vertx.config.vault.client.Secret result
        10: .line 122
            aload 2 /* result */
            invokevirtual io.vertx.config.vault.client.Secret.getData:()Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.copy:()Lio/vertx/core/json/JsonObject;
            astore 3 /* copy */
        start local 3 // io.vertx.core.json.JsonObject copy
        11: .line 123
            aload 3 /* copy */
            ldc "vault-lease-id"
            aload 2 /* result */
            invokevirtual io.vertx.config.vault.client.Secret.getLeaseId:()Ljava/lang/String;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            pop
        12: .line 124
            aload 3 /* copy */
            ldc "vault-lease-duration"
            aload 2 /* result */
            invokevirtual io.vertx.config.vault.client.Secret.getLeaseDuration:()J
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Long;)Lio/vertx/core/json/JsonObject;
            pop
        13: .line 125
            aload 3 /* copy */
            ldc "vault-renewable"
            aload 2 /* result */
            invokevirtual io.vertx.config.vault.client.Secret.isRenewable:()Z
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Boolean;)Lio/vertx/core/json/JsonObject;
            pop
        14: .line 126
            aload 0
            aload 3 /* copy */
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
        end local 3 // io.vertx.core.json.JsonObject copy
        end local 2 // io.vertx.config.vault.client.Secret result
        15: .line 128
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     1      ar  Lio/vertx/core/AsyncResult<Lio/vertx/config/vault/client/Secret;>;
           10   15     2  result  Lio/vertx/config/vault/client/Secret;
           11   15     3    copy  Lio/vertx/core/json/JsonObject;

  private void lambda$5(io.vertx.core.Promise, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.config.vault.VaultConfigStore this
        start local 2 // io.vertx.core.AsyncResult auth
         0: .line 153
            aload 0 /* this */
            aload 1
            aload 2 /* auth */
            invokevirtual io.vertx.config.vault.VaultConfigStore.manageAuthenticationResult:(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
         1: .line 154
            return
        end local 2 // io.vertx.core.AsyncResult auth
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/config/vault/VaultConfigStore;
            0    2     2  auth  Lio/vertx/core/AsyncResult<Lio/vertx/config/vault/client/Auth;>;

  private void lambda$6(io.vertx.core.Promise, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.config.vault.VaultConfigStore this
        start local 2 // io.vertx.core.AsyncResult auth
         0: .line 198
            aload 0 /* this */
            aload 1
            aload 2 /* auth */
            invokevirtual io.vertx.config.vault.VaultConfigStore.manageAuthenticationResult:(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
            return
        end local 2 // io.vertx.core.AsyncResult auth
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/config/vault/VaultConfigStore;
            0    1     2  auth  Lio/vertx/core/AsyncResult<Lio/vertx/config/vault/client/Auth;>;

  private void lambda$7(io.vertx.core.Promise, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.config.vault.VaultConfigStore this
        start local 2 // io.vertx.core.AsyncResult auth
         0: .line 205
            aload 0 /* this */
            aload 1
            aload 2 /* auth */
            invokevirtual io.vertx.config.vault.VaultConfigStore.manageAuthenticationResult:(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
            return
        end local 2 // io.vertx.core.AsyncResult auth
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/config/vault/VaultConfigStore;
            0    1     2  auth  Lio/vertx/core/AsyncResult<Lio/vertx/config/vault/client/Auth;>;

  private void lambda$8(io.vertx.core.Promise, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.config.vault.VaultConfigStore this
        start local 2 // io.vertx.core.AsyncResult auth
         0: .line 221
            aload 0 /* this */
            aload 1
            aload 2 /* auth */
            invokevirtual io.vertx.config.vault.VaultConfigStore.manageAuthenticationResult:(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
            return
        end local 2 // io.vertx.core.AsyncResult auth
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/config/vault/VaultConfigStore;
            0    1     2  auth  Lio/vertx/core/AsyncResult<Lio/vertx/config/vault/client/Auth;>;

  private void lambda$9(io.vertx.core.Promise, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.config.vault.VaultConfigStore this
        start local 2 // io.vertx.core.AsyncResult auth
         0: .line 236
            aload 0 /* this */
            aload 1
            aload 2 /* auth */
            invokevirtual io.vertx.config.vault.VaultConfigStore.manageAuthenticationResult:(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
            return
        end local 2 // io.vertx.core.AsyncResult auth
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/config/vault/VaultConfigStore;
            0    1     2  auth  Lio/vertx/core/AsyncResult<Lio/vertx/config/vault/client/Auth;>;

  private io.vertx.core.Future lambda$1(java.lang.Void);
    descriptor: (Ljava/lang/Void;)Lio/vertx/core/Future;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.config.vault.VaultConfigStore this
        start local 1 // java.lang.Void v
         0: .line 79
            aload 0 /* this */
            invokevirtual io.vertx.config.vault.VaultConfigStore.renew:()Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.Void v
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/config/vault/VaultConfigStore;
            0    1     1     v  Ljava/lang/Void;

  private io.vertx.core.Future lambda$2(java.lang.Void);
    descriptor: (Ljava/lang/Void;)Lio/vertx/core/Future;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.config.vault.VaultConfigStore this
        start local 1 // java.lang.Void v
         0: .line 80
            aload 0 /* this */
            invokevirtual io.vertx.config.vault.VaultConfigStore.retrieve:()Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.Void v
        end local 0 // io.vertx.config.vault.VaultConfigStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/config/vault/VaultConfigStore;
            0    1     1     v  Ljava/lang/Void;
}
SourceFile: "VaultConfigStore.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles