public class examples.ConfigVaultExamples
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: examples.ConfigVaultExamples
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // examples.ConfigVaultExamples this
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // examples.ConfigVaultExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lexamples/ConfigVaultExamples;

  public void example1(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=3, locals=4, args_size=3
        start local 0 // examples.ConfigVaultExamples this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.core.json.JsonObject config
         0: .line 36
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         1: .line 37
            ldc "vault"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         2: .line 38
            aload 2 /* config */
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
         3: .line 36
            astore 3 /* store */
        start local 3 // io.vertx.config.ConfigStoreOptions store
         4: .line 40
            aload 1 /* vertx */
         5: .line 41
            new io.vertx.config.ConfigRetrieverOptions
            dup
            invokespecial io.vertx.config.ConfigRetrieverOptions.<init>:()V
            aload 3 /* store */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
         6: .line 40
            invokestatic io.vertx.config.ConfigRetriever.create:(Lio/vertx/core/Vertx;Lio/vertx/config/ConfigRetrieverOptions;)Lio/vertx/config/ConfigRetriever;
            pop
         7: .line 42
            return
        end local 3 // io.vertx.config.ConfigStoreOptions store
        end local 2 // io.vertx.core.json.JsonObject config
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.ConfigVaultExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lexamples/ConfigVaultExamples;
            0    8     1   vertx  Lio/vertx/core/Vertx;
            0    8     2  config  Lio/vertx/core/json/JsonObject;
            4    8     3   store  Lio/vertx/config/ConfigStoreOptions;
    MethodParameters:
        Name  Flags
      vertx   
      config  

  public void example1WithConfig(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // examples.ConfigVaultExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 45
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
         1: .line 46
            ldc "host"
            ldc "127.0.0.1"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         2: .line 47
            ldc "port"
            sipush 8200
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         3: .line 48
            ldc "ssl"
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         4: .line 45
            astore 2 /* vault_config */
        start local 2 // io.vertx.core.json.JsonObject vault_config
         5: .line 51
            new io.vertx.core.net.PemKeyCertOptions
            dup
            invokespecial io.vertx.core.net.PemKeyCertOptions.<init>:()V
         6: .line 52
            ldc "target/vault/config/ssl/client-cert.pem"
            invokevirtual io.vertx.core.net.PemKeyCertOptions.addCertPath:(Ljava/lang/String;)Lio/vertx/core/net/PemKeyCertOptions;
         7: .line 53
            ldc "target/vault/config/ssl/client-privatekey.pem"
            invokevirtual io.vertx.core.net.PemKeyCertOptions.addKeyPath:(Ljava/lang/String;)Lio/vertx/core/net/PemKeyCertOptions;
         8: .line 51
            astore 3 /* certs */
        start local 3 // io.vertx.core.net.PemKeyCertOptions certs
         9: .line 54
            aload 2 /* vault_config */
            ldc "pemKeyCertOptions"
            aload 3 /* certs */
            invokevirtual io.vertx.core.net.PemKeyCertOptions.toJson:()Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
        10: .line 57
            new io.vertx.core.net.JksOptions
            dup
            invokespecial io.vertx.core.net.JksOptions.<init>:()V
        11: .line 58
            ldc "target/vault/config/ssl/truststore.jks"
            invokevirtual io.vertx.core.net.JksOptions.setPath:(Ljava/lang/String;)Lio/vertx/core/net/JksOptions;
        12: .line 57
            astore 4 /* jks */
        start local 4 // io.vertx.core.net.JksOptions jks
        13: .line 59
            aload 2 /* vault_config */
            ldc "trustStoreOptions"
            aload 4 /* jks */
            invokevirtual io.vertx.core.net.JksOptions.toJson:()Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
        14: .line 62
            aload 2 /* vault_config */
            ldc "path"
            ldc "secret/my-secret"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
        15: .line 64
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
        16: .line 65
            ldc "vault"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
        17: .line 66
            aload 2 /* vault_config */
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
        18: .line 64
            astore 5 /* store */
        start local 5 // io.vertx.config.ConfigStoreOptions store
        19: .line 68
            aload 1 /* vertx */
        20: .line 69
            new io.vertx.config.ConfigRetrieverOptions
            dup
            invokespecial io.vertx.config.ConfigRetrieverOptions.<init>:()V
            aload 5 /* store */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
        21: .line 68
            invokestatic io.vertx.config.ConfigRetriever.create:(Lio/vertx/core/Vertx;Lio/vertx/config/ConfigRetrieverOptions;)Lio/vertx/config/ConfigRetriever;
            pop
        22: .line 70
            return
        end local 5 // io.vertx.config.ConfigStoreOptions store
        end local 4 // io.vertx.core.net.JksOptions jks
        end local 3 // io.vertx.core.net.PemKeyCertOptions certs
        end local 2 // io.vertx.core.json.JsonObject vault_config
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.ConfigVaultExamples this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   23     0          this  Lexamples/ConfigVaultExamples;
            0   23     1         vertx  Lio/vertx/core/Vertx;
            5   23     2  vault_config  Lio/vertx/core/json/JsonObject;
            9   23     3         certs  Lio/vertx/core/net/PemKeyCertOptions;
           13   23     4           jks  Lio/vertx/core/net/JksOptions;
           19   23     5         store  Lio/vertx/config/ConfigStoreOptions;
    MethodParameters:
       Name  Flags
      vertx  

  public void exampleWithToken(io.vertx.core.Vertx, java.lang.String);
    descriptor: (Lio/vertx/core/Vertx;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // examples.ConfigVaultExamples this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // java.lang.String token
         0: .line 73
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 3 /* vault_config */
        start local 3 // io.vertx.core.json.JsonObject vault_config
         1: .line 78
            aload 3 /* vault_config */
            ldc "path"
            ldc "secret/my-secret"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         2: .line 81
            aload 3 /* vault_config */
            ldc "token"
            aload 2 /* token */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         3: .line 83
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         4: .line 84
            ldc "vault"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         5: .line 85
            aload 3 /* vault_config */
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
         6: .line 83
            astore 4 /* store */
        start local 4 // io.vertx.config.ConfigStoreOptions store
         7: .line 87
            aload 1 /* vertx */
         8: .line 88
            new io.vertx.config.ConfigRetrieverOptions
            dup
            invokespecial io.vertx.config.ConfigRetrieverOptions.<init>:()V
            aload 4 /* store */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
         9: .line 87
            invokestatic io.vertx.config.ConfigRetriever.create:(Lio/vertx/core/Vertx;Lio/vertx/config/ConfigRetrieverOptions;)Lio/vertx/config/ConfigRetriever;
            pop
        10: .line 89
            return
        end local 4 // io.vertx.config.ConfigStoreOptions store
        end local 3 // io.vertx.core.json.JsonObject vault_config
        end local 2 // java.lang.String token
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.ConfigVaultExamples this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   11     0          this  Lexamples/ConfigVaultExamples;
            0   11     1         vertx  Lio/vertx/core/Vertx;
            0   11     2         token  Ljava/lang/String;
            1   11     3  vault_config  Lio/vertx/core/json/JsonObject;
            7   11     4         store  Lio/vertx/config/ConfigStoreOptions;
    MethodParameters:
       Name  Flags
      vertx  
      token  

  public void exampleWithTokenCreation(io.vertx.core.Vertx, java.lang.String);
    descriptor: (Lio/vertx/core/Vertx;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // examples.ConfigVaultExamples this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // java.lang.String token
         0: .line 92
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 3 /* vault_config */
        start local 3 // io.vertx.core.json.JsonObject vault_config
         1: .line 97
            aload 3 /* vault_config */
            ldc "path"
            ldc "secret/my-secret"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         2: .line 102
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
         3: .line 103
            ldc "ttl"
            ldc "1h"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         4: .line 104
            ldc "noDefault"
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         5: .line 107
            ldc "token"
            aload 2 /* token */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         6: .line 102
            astore 4 /* tokenRequest */
        start local 4 // io.vertx.core.json.JsonObject tokenRequest
         7: .line 109
            aload 3 /* vault_config */
            ldc "auth-backend"
            ldc "token"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         8: .line 110
            ldc "renew-window"
            ldc 5000
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         9: .line 111
            ldc "token-request"
            aload 4 /* tokenRequest */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
        10: .line 113
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
        11: .line 114
            ldc "vault"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
        12: .line 115
            aload 3 /* vault_config */
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
        13: .line 113
            astore 5 /* store */
        start local 5 // io.vertx.config.ConfigStoreOptions store
        14: .line 117
            aload 1 /* vertx */
        15: .line 118
            new io.vertx.config.ConfigRetrieverOptions
            dup
            invokespecial io.vertx.config.ConfigRetrieverOptions.<init>:()V
            aload 5 /* store */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
        16: .line 117
            invokestatic io.vertx.config.ConfigRetriever.create:(Lio/vertx/core/Vertx;Lio/vertx/config/ConfigRetrieverOptions;)Lio/vertx/config/ConfigRetriever;
            pop
        17: .line 119
            return
        end local 5 // io.vertx.config.ConfigStoreOptions store
        end local 4 // io.vertx.core.json.JsonObject tokenRequest
        end local 3 // io.vertx.core.json.JsonObject vault_config
        end local 2 // java.lang.String token
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.ConfigVaultExamples this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   18     0          this  Lexamples/ConfigVaultExamples;
            0   18     1         vertx  Lio/vertx/core/Vertx;
            0   18     2         token  Ljava/lang/String;
            1   18     3  vault_config  Lio/vertx/core/json/JsonObject;
            7   18     4  tokenRequest  Lio/vertx/core/json/JsonObject;
           14   18     5         store  Lio/vertx/config/ConfigStoreOptions;
    MethodParameters:
       Name  Flags
      vertx  
      token  

  public void exampleWithCerts(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // examples.ConfigVaultExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 123
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 2 /* vault_config */
        start local 2 // io.vertx.core.json.JsonObject vault_config
         1: .line 127
            new io.vertx.core.net.PemKeyCertOptions
            dup
            invokespecial io.vertx.core.net.PemKeyCertOptions.<init>:()V
         2: .line 128
            ldc "target/vault/config/ssl/client-cert.pem"
            invokevirtual io.vertx.core.net.PemKeyCertOptions.addCertPath:(Ljava/lang/String;)Lio/vertx/core/net/PemKeyCertOptions;
         3: .line 129
            ldc "target/vault/config/ssl/client-privatekey.pem"
            invokevirtual io.vertx.core.net.PemKeyCertOptions.addKeyPath:(Ljava/lang/String;)Lio/vertx/core/net/PemKeyCertOptions;
         4: .line 127
            astore 3 /* certs */
        start local 3 // io.vertx.core.net.PemKeyCertOptions certs
         5: .line 130
            aload 2 /* vault_config */
            ldc "pemKeyCertOptions"
            aload 3 /* certs */
            invokevirtual io.vertx.core.net.PemKeyCertOptions.toJson:()Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         6: .line 132
            new io.vertx.core.net.PemTrustOptions
            dup
            invokespecial io.vertx.core.net.PemTrustOptions.<init>:()V
         7: .line 133
            ldc "target/vault/config/ssl/cert.pem"
            invokevirtual io.vertx.core.net.PemTrustOptions.addCertPath:(Ljava/lang/String;)Lio/vertx/core/net/PemTrustOptions;
         8: .line 132
            astore 4 /* trust */
        start local 4 // io.vertx.core.net.PemTrustOptions trust
         9: .line 134
            aload 2 /* vault_config */
            ldc "pemTrustStoreOptions"
            aload 4 /* trust */
            invokevirtual io.vertx.core.net.PemTrustOptions.toJson:()Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
        10: .line 136
            new io.vertx.core.net.JksOptions
            dup
            invokespecial io.vertx.core.net.JksOptions.<init>:()V
        11: .line 137
            ldc "target/vault/config/ssl/truststore.jks"
            invokevirtual io.vertx.core.net.JksOptions.setPath:(Ljava/lang/String;)Lio/vertx/core/net/JksOptions;
        12: .line 136
            astore 5 /* jks */
        start local 5 // io.vertx.core.net.JksOptions jks
        13: .line 138
            aload 2 /* vault_config */
            ldc "trustStoreOptions"
            aload 5 /* jks */
            invokevirtual io.vertx.core.net.JksOptions.toJson:()Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
        14: .line 140
            aload 2 /* vault_config */
            ldc "auth-backend"
            ldc "cert"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
        15: .line 143
            aload 2 /* vault_config */
            ldc "path"
            ldc "secret/my-secret"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
        16: .line 145
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
        17: .line 146
            ldc "vault"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
        18: .line 147
            aload 2 /* vault_config */
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
        19: .line 145
            astore 6 /* store */
        start local 6 // io.vertx.config.ConfigStoreOptions store
        20: .line 149
            aload 1 /* vertx */
        21: .line 150
            new io.vertx.config.ConfigRetrieverOptions
            dup
            invokespecial io.vertx.config.ConfigRetrieverOptions.<init>:()V
            aload 6 /* store */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
        22: .line 149
            invokestatic io.vertx.config.ConfigRetriever.create:(Lio/vertx/core/Vertx;Lio/vertx/config/ConfigRetrieverOptions;)Lio/vertx/config/ConfigRetriever;
            pop
        23: .line 151
            return
        end local 6 // io.vertx.config.ConfigStoreOptions store
        end local 5 // io.vertx.core.net.JksOptions jks
        end local 4 // io.vertx.core.net.PemTrustOptions trust
        end local 3 // io.vertx.core.net.PemKeyCertOptions certs
        end local 2 // io.vertx.core.json.JsonObject vault_config
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.ConfigVaultExamples this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   24     0          this  Lexamples/ConfigVaultExamples;
            0   24     1         vertx  Lio/vertx/core/Vertx;
            1   24     2  vault_config  Lio/vertx/core/json/JsonObject;
            5   24     3         certs  Lio/vertx/core/net/PemKeyCertOptions;
            9   24     4         trust  Lio/vertx/core/net/PemTrustOptions;
           13   24     5           jks  Lio/vertx/core/net/JksOptions;
           20   24     6         store  Lio/vertx/config/ConfigStoreOptions;
    MethodParameters:
       Name  Flags
      vertx  

  public void exampleWithAppRole(io.vertx.core.Vertx, java.lang.String, java.lang.String);
    descriptor: (Lio/vertx/core/Vertx;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // examples.ConfigVaultExamples this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // java.lang.String appRoleId
        start local 3 // java.lang.String secretId
         0: .line 154
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 4 /* vault_config */
        start local 4 // io.vertx.core.json.JsonObject vault_config
         1: .line 158
            aload 4 /* vault_config */
         2: .line 159
            ldc "auth-backend"
            ldc "approle"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         3: .line 160
            ldc "approle"
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
         4: .line 161
            ldc "role-id"
            aload 2 /* appRoleId */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            ldc "secret-id"
            aload 3 /* secretId */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         5: .line 160
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         6: .line 165
            aload 4 /* vault_config */
            ldc "path"
            ldc "secret/my-secret"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         7: .line 167
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         8: .line 168
            ldc "vault"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         9: .line 169
            aload 4 /* vault_config */
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
        10: .line 167
            astore 5 /* store */
        start local 5 // io.vertx.config.ConfigStoreOptions store
        11: .line 171
            aload 1 /* vertx */
        12: .line 172
            new io.vertx.config.ConfigRetrieverOptions
            dup
            invokespecial io.vertx.config.ConfigRetrieverOptions.<init>:()V
            aload 5 /* store */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
        13: .line 171
            invokestatic io.vertx.config.ConfigRetriever.create:(Lio/vertx/core/Vertx;Lio/vertx/config/ConfigRetrieverOptions;)Lio/vertx/config/ConfigRetriever;
            pop
        14: .line 173
            return
        end local 5 // io.vertx.config.ConfigStoreOptions store
        end local 4 // io.vertx.core.json.JsonObject vault_config
        end local 3 // java.lang.String secretId
        end local 2 // java.lang.String appRoleId
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.ConfigVaultExamples this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   15     0          this  Lexamples/ConfigVaultExamples;
            0   15     1         vertx  Lio/vertx/core/Vertx;
            0   15     2     appRoleId  Ljava/lang/String;
            0   15     3      secretId  Ljava/lang/String;
            1   15     4  vault_config  Lio/vertx/core/json/JsonObject;
           11   15     5         store  Lio/vertx/config/ConfigStoreOptions;
    MethodParameters:
           Name  Flags
      vertx      
      appRoleId  
      secretId   

  public void exampleWithUserPass(io.vertx.core.Vertx, java.lang.String, java.lang.String);
    descriptor: (Lio/vertx/core/Vertx;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // examples.ConfigVaultExamples this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // java.lang.String username
        start local 3 // java.lang.String password
         0: .line 176
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 4 /* vault_config */
        start local 4 // io.vertx.core.json.JsonObject vault_config
         1: .line 180
            aload 4 /* vault_config */
         2: .line 181
            ldc "auth-backend"
            ldc "userpass"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         3: .line 182
            ldc "user-credentials"
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
         4: .line 183
            ldc "username"
            aload 2 /* username */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            ldc "password"
            aload 3 /* password */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
         5: .line 182
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         6: .line 187
            aload 4 /* vault_config */
            ldc "path"
            ldc "secret/my-secret"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         7: .line 189
            new io.vertx.config.ConfigStoreOptions
            dup
            invokespecial io.vertx.config.ConfigStoreOptions.<init>:()V
         8: .line 190
            ldc "vault"
            invokevirtual io.vertx.config.ConfigStoreOptions.setType:(Ljava/lang/String;)Lio/vertx/config/ConfigStoreOptions;
         9: .line 191
            aload 4 /* vault_config */
            invokevirtual io.vertx.config.ConfigStoreOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/config/ConfigStoreOptions;
        10: .line 189
            astore 5 /* store */
        start local 5 // io.vertx.config.ConfigStoreOptions store
        11: .line 193
            aload 1 /* vertx */
        12: .line 194
            new io.vertx.config.ConfigRetrieverOptions
            dup
            invokespecial io.vertx.config.ConfigRetrieverOptions.<init>:()V
            aload 5 /* store */
            invokevirtual io.vertx.config.ConfigRetrieverOptions.addStore:(Lio/vertx/config/ConfigStoreOptions;)Lio/vertx/config/ConfigRetrieverOptions;
        13: .line 193
            invokestatic io.vertx.config.ConfigRetriever.create:(Lio/vertx/core/Vertx;Lio/vertx/config/ConfigRetrieverOptions;)Lio/vertx/config/ConfigRetriever;
            pop
        14: .line 195
            return
        end local 5 // io.vertx.config.ConfigStoreOptions store
        end local 4 // io.vertx.core.json.JsonObject vault_config
        end local 3 // java.lang.String password
        end local 2 // java.lang.String username
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.ConfigVaultExamples this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   15     0          this  Lexamples/ConfigVaultExamples;
            0   15     1         vertx  Lio/vertx/core/Vertx;
            0   15     2      username  Ljava/lang/String;
            0   15     3      password  Ljava/lang/String;
            1   15     4  vault_config  Lio/vertx/core/json/JsonObject;
           11   15     5         store  Lio/vertx/config/ConfigStoreOptions;
    MethodParameters:
          Name  Flags
      vertx     
      username  
      password  
}
SourceFile: "ConfigVaultExamples.java"