public class io.vertx.config.kubernetes.ConfigMapStore implements io.vertx.config.spi.ConfigStore
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.config.kubernetes.ConfigMapStore
  super_class: java.lang.Object
{
  private static final java.lang.String KUBERNETES_NAMESPACE;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.util.Base64$Decoder DECODER;
    descriptor: Ljava/util/Base64$Decoder;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  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.json.JsonObject configuration;
    descriptor: Lio/vertx/core/json/JsonObject;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

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

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

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

  private final io.vertx.ext.web.client.WebClient client;
    descriptor: Lio/vertx/ext/web/client/WebClient;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.lang.String token;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 43
            ldc "KUBERNETES_NAMESPACE"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            putstatic io.vertx.config.kubernetes.ConfigMapStore.KUBERNETES_NAMESPACE:Ljava/lang/String;
         1: .line 44
            invokestatic java.util.Base64.getDecoder:()Ljava/util/Base64$Decoder;
            putstatic io.vertx.config.kubernetes.ConfigMapStore.DECODER:Ljava/util/Base64$Decoder;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  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=6, locals=8, args_size=3
        start local 0 // io.vertx.config.kubernetes.ConfigMapStore this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.core.json.JsonObject configuration
         0: .line 57
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 58
            aload 0 /* this */
            aload 1 /* vertx */
            checkcast io.vertx.core.impl.VertxInternal
            putfield io.vertx.config.kubernetes.ConfigMapStore.vertx:Lio/vertx/core/impl/VertxInternal;
         2: .line 59
            aload 0 /* this */
            aload 2 /* configuration */
            putfield io.vertx.config.kubernetes.ConfigMapStore.configuration:Lio/vertx/core/json/JsonObject;
         3: .line 61
            aload 2 /* configuration */
            ldc "namespace"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            astore 3 /* ns */
        start local 3 // java.lang.String ns
         4: .line 62
            aload 3 /* ns */
            ifnonnull 9
         5: .line 63
            getstatic io.vertx.config.kubernetes.ConfigMapStore.KUBERNETES_NAMESPACE:Ljava/lang/String;
            ifnull 8
         6: .line 64
            getstatic io.vertx.config.kubernetes.ConfigMapStore.KUBERNETES_NAMESPACE:Ljava/lang/String;
            astore 3 /* ns */
         7: .line 65
            goto 9
         8: .line 66
      StackMap locals: io.vertx.config.kubernetes.ConfigMapStore io.vertx.core.Vertx io.vertx.core.json.JsonObject java.lang.String
      StackMap stack:
            ldc "default"
            astore 3 /* ns */
         9: .line 69
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* configuration */
            ldc "optional"
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.getBoolean:(Ljava/lang/String;Ljava/lang/Boolean;)Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            putfield io.vertx.config.kubernetes.ConfigMapStore.optional:Z
        10: .line 70
            aload 0 /* this */
            aload 3 /* ns */
            putfield io.vertx.config.kubernetes.ConfigMapStore.namespace:Ljava/lang/String;
        11: .line 71
            aload 0 /* this */
            aload 2 /* configuration */
            ldc "name"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            putfield io.vertx.config.kubernetes.ConfigMapStore.name:Ljava/lang/String;
        12: .line 72
            aload 0 /* this */
            aload 2 /* configuration */
            ldc "key"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            putfield io.vertx.config.kubernetes.ConfigMapStore.key:Ljava/lang/String;
        13: .line 73
            aload 0 /* this */
            aload 2 /* configuration */
            ldc "secret"
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.getBoolean:(Ljava/lang/String;Ljava/lang/Boolean;)Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            putfield io.vertx.config.kubernetes.ConfigMapStore.secret:Z
        14: .line 74
            aload 2 /* configuration */
            ldc "port"
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual io.vertx.core.json.JsonObject.getInteger:(Ljava/lang/String;Ljava/lang/Integer;)Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            istore 4 /* port */
        start local 4 // int port
        15: .line 75
            iload 4 /* port */
            ifne 20
        16: .line 76
            aload 2 /* configuration */
            ldc "ssl"
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.getBoolean:(Ljava/lang/String;Ljava/lang/Boolean;)Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 19
        17: .line 77
            sipush 443
            istore 4 /* port */
        18: .line 78
            goto 20
        19: .line 79
      StackMap locals: int
      StackMap stack:
            bipush 80
            istore 4 /* port */
        20: .line 83
      StackMap locals:
      StackMap stack:
            ldc "KUBERNETES_SERVICE_PORT"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            astore 5 /* p */
        start local 5 // java.lang.String p
        21: .line 84
            aload 5 /* p */
            ifnull 23
        22: .line 85
            aload 5 /* p */
            invokestatic java.lang.Integer.valueOf:(Ljava/lang/String;)Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            istore 4 /* port */
        23: .line 88
      StackMap locals: java.lang.String
      StackMap stack:
            aload 2 /* configuration */
            ldc "host"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            astore 6 /* host */
        start local 6 // java.lang.String host
        24: .line 89
            ldc "KUBERNETES_SERVICE_HOST"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            astore 7 /* h */
        start local 7 // java.lang.String h
        25: .line 90
            aload 7 /* h */
            ifnull 27
        26: .line 91
            aload 7 /* h */
            astore 6 /* host */
        27: .line 94
      StackMap locals: java.lang.String java.lang.String
      StackMap stack:
            aload 0 /* this */
            aload 1 /* vertx */
        28: .line 95
            new io.vertx.ext.web.client.WebClientOptions
            dup
            invokespecial io.vertx.ext.web.client.WebClientOptions.<init>:()V
        29: .line 96
            iconst_1
            invokevirtual io.vertx.ext.web.client.WebClientOptions.setTrustAll:(Z)Lio/vertx/ext/web/client/WebClientOptions;
        30: .line 97
            aload 2 /* configuration */
            ldc "ssl"
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.getBoolean:(Ljava/lang/String;Ljava/lang/Boolean;)Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            invokevirtual io.vertx.ext.web.client.WebClientOptions.setSsl:(Z)Lio/vertx/ext/web/client/WebClientOptions;
        31: .line 98
            aload 6 /* host */
            invokevirtual io.vertx.ext.web.client.WebClientOptions.setDefaultHost:(Ljava/lang/String;)Lio/vertx/ext/web/client/WebClientOptions;
        32: .line 99
            iload 4 /* port */
            invokevirtual io.vertx.ext.web.client.WebClientOptions.setDefaultPort:(I)Lio/vertx/ext/web/client/WebClientOptions;
        33: .line 100
            iconst_1
            invokevirtual io.vertx.ext.web.client.WebClientOptions.setFollowRedirects:(Z)Lio/vertx/ext/web/client/WebClientOptions;
        34: .line 94
            invokestatic io.vertx.ext.web.client.WebClient.create:(Lio/vertx/core/Vertx;Lio/vertx/ext/web/client/WebClientOptions;)Lio/vertx/ext/web/client/WebClient;
            putfield io.vertx.config.kubernetes.ConfigMapStore.client:Lio/vertx/ext/web/client/WebClient;
        35: .line 103
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.name:Ljava/lang/String;
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        36: .line 104
            return
        end local 7 // java.lang.String h
        end local 6 // java.lang.String host
        end local 5 // java.lang.String p
        end local 4 // int port
        end local 3 // java.lang.String ns
        end local 2 // io.vertx.core.json.JsonObject configuration
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.config.kubernetes.ConfigMapStore this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   37     0           this  Lio/vertx/config/kubernetes/ConfigMapStore;
            0   37     1          vertx  Lio/vertx/core/Vertx;
            0   37     2  configuration  Lio/vertx/core/json/JsonObject;
            4   37     3             ns  Ljava/lang/String;
           15   37     4           port  I
           21   37     5              p  Ljava/lang/String;
           24   37     6           host  Ljava/lang/String;
           25   37     7              h  Ljava/lang/String;
    MethodParameters:
               Name  Flags
      vertx          
      configuration  

  public io.vertx.core.Future<java.lang.Void> close();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.config.kubernetes.ConfigMapStore this
         0: .line 108
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.client:Lio/vertx/ext/web/client/WebClient;
            ifnull 2
         1: .line 109
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.client:Lio/vertx/ext/web/client/WebClient;
            invokeinterface io.vertx.ext.web.client.WebClient.close:()V
         2: .line 111
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.succeededFuture:()Lio/vertx/core/Future;
            areturn
        end local 0 // io.vertx.config.kubernetes.ConfigMapStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/config/kubernetes/ConfigMapStore;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  private io.vertx.core.Future<java.lang.String> getToken();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.config.kubernetes.ConfigMapStore this
         0: .line 115
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.configuration:Lio/vertx/core/json/JsonObject;
            ldc "token"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* token */
        start local 1 // java.lang.String token
         1: .line 116
            aload 1 /* token */
            ifnull 4
            aload 1 /* token */
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
            invokevirtual java.lang.String.isEmpty:()Z
            ifne 4
         2: .line 117
            aload 0 /* this */
            aload 1 /* token */
            putfield io.vertx.config.kubernetes.ConfigMapStore.token:Ljava/lang/String;
         3: .line 118
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            aload 1 /* token */
            invokeinterface io.vertx.core.impl.ContextInternal.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            areturn
         4: .line 122
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.fileSystem:()Lio/vertx/core/file/FileSystem;
            ldc "/var/run/secrets/kubernetes.io/serviceaccount/token"
            invokeinterface io.vertx.core.file.FileSystem.readFile:(Ljava/lang/String;)Lio/vertx/core/Future;
         5: .line 123
            aload 0 /* this */
            invokedynamic apply(Lio/vertx/config/kubernetes/ConfigMapStore;)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/kubernetes/ConfigMapStore.lambda$0(Ljava/lang/Throwable;)Lio/vertx/core/Future; (7)
                  (Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.recover:(Ljava/util/function/Function;)Lio/vertx/core/Future;
         6: .line 124
            invokedynamic apply()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/core/buffer/Buffer.toString()Ljava/lang/String; (9 itf)
                  (Lio/vertx/core/buffer/Buffer;)Ljava/lang/String;
            invokeinterface io.vertx.core.Future.map:(Ljava/util/function/Function;)Lio/vertx/core/Future;
         7: .line 125
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/config/kubernetes/ConfigMapStore;)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/kubernetes/ConfigMapStore.lambda$2(Ljava/lang/String;)V (7)
                  (Ljava/lang/String;)V
            invokeinterface io.vertx.core.Future.onSuccess:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
         8: .line 122
            areturn
        end local 1 // java.lang.String token
        end local 0 // io.vertx.config.kubernetes.ConfigMapStore this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lio/vertx/config/kubernetes/ConfigMapStore;
            1    9     1  token  Ljava/lang/String;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/String;>;

  public io.vertx.core.Future<io.vertx.core.buffer.Buffer> get();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.config.kubernetes.ConfigMapStore this
         0: .line 133
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.token:Ljava/lang/String;
            ifnonnull 3
         1: .line 134
            aload 0 /* this */
            invokevirtual io.vertx.config.kubernetes.ConfigMapStore.getToken:()Lio/vertx/core/Future;
            astore 1 /* retrieveToken */
        start local 1 // io.vertx.core.Future retrieveToken
         2: .line 135
            goto 4
        end local 1 // io.vertx.core.Future retrieveToken
         3: .line 136
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.token:Ljava/lang/String;
            invokeinterface io.vertx.core.impl.ContextInternal.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            astore 1 /* retrieveToken */
        start local 1 // io.vertx.core.Future retrieveToken
         4: .line 139
      StackMap locals: io.vertx.core.Future
      StackMap stack:
            aload 1 /* retrieveToken */
            aload 0 /* this */
            invokedynamic apply(Lio/vertx/config/kubernetes/ConfigMapStore;)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/kubernetes/ConfigMapStore.lambda$3(Ljava/lang/String;)Lio/vertx/core/Future; (7)
                  (Ljava/lang/String;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.flatMap:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.Future retrieveToken
        end local 0 // io.vertx.config.kubernetes.ConfigMapStore this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lio/vertx/config/kubernetes/ConfigMapStore;
            2    3     1  retrieveToken  Lio/vertx/core/Future<Ljava/lang/String;>;
            4    5     1  retrieveToken  Lio/vertx/core/Future<Ljava/lang/String;>;
    Signature: ()Lio/vertx/core/Future<Lio/vertx/core/buffer/Buffer;>;

  private io.vertx.core.Future<io.vertx.core.buffer.Buffer> handle404();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.config.kubernetes.ConfigMapStore this
         0: .line 170
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.optional:Z
            ifeq 2
         1: .line 171
            ldc "{}"
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            areturn
         2: .line 173
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "Cannot find the config map '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.name:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "' in '"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.namespace:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "'"
            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;
            areturn
        end local 0 // io.vertx.config.kubernetes.ConfigMapStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/config/kubernetes/ConfigMapStore;
    Signature: ()Lio/vertx/core/Future<Lio/vertx/core/buffer/Buffer;>;

  private io.vertx.core.Future<io.vertx.core.buffer.Buffer> handle403();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.config.kubernetes.ConfigMapStore this
         0: .line 177
            new java.lang.StringBuilder
            dup
            ldc "Access denied to configmap or secret in namespace "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.namespace:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ": "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.name: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;
            areturn
        end local 0 // io.vertx.config.kubernetes.ConfigMapStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/config/kubernetes/ConfigMapStore;
    Signature: ()Lio/vertx/core/Future<Lio/vertx/core/buffer/Buffer;>;

  private io.vertx.core.Future<io.vertx.core.buffer.Buffer> handleOtherErrors(io.vertx.ext.web.client.HttpResponse<io.vertx.core.buffer.Buffer>);
    descriptor: (Lio/vertx/ext/web/client/HttpResponse;)Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.config.kubernetes.ConfigMapStore this
        start local 1 // io.vertx.ext.web.client.HttpResponse response
         0: .line 181
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.optional:Z
            ifeq 2
         1: .line 182
            ldc "{}"
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            areturn
         2: .line 184
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "Cannot retrieve the configmap or secret in namespace "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         3: .line 185
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.namespace:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ": "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.name:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ", status code: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* response */
            invokeinterface io.vertx.ext.web.client.HttpResponse.statusCode:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", error: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 186
            aload 1 /* response */
            invokeinterface io.vertx.ext.web.client.HttpResponse.bodyAsString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         5: .line 184
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.ext.web.client.HttpResponse response
        end local 0 // io.vertx.config.kubernetes.ConfigMapStore this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lio/vertx/config/kubernetes/ConfigMapStore;
            0    6     1  response  Lio/vertx/ext/web/client/HttpResponse<Lio/vertx/core/buffer/Buffer;>;
    Signature: (Lio/vertx/ext/web/client/HttpResponse<Lio/vertx/core/buffer/Buffer;>;)Lio/vertx/core/Future<Lio/vertx/core/buffer/Buffer;>;
    MethodParameters:
          Name  Flags
      response  

  private io.vertx.core.Future<io.vertx.core.buffer.Buffer> handle200(io.vertx.ext.web.client.HttpResponse<io.vertx.core.buffer.Buffer>);
    descriptor: (Lio/vertx/ext/web/client/HttpResponse;)Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.vertx.config.kubernetes.ConfigMapStore this
        start local 1 // io.vertx.ext.web.client.HttpResponse response
         0: .line 190
            aload 1 /* response */
            invokeinterface io.vertx.ext.web.client.HttpResponse.bodyAsJsonObject:()Lio/vertx/core/json/JsonObject;
            ldc "data"
            invokevirtual io.vertx.core.json.JsonObject.getJsonObject:(Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 2 /* data */
        start local 2 // io.vertx.core.json.JsonObject data
         1: .line 191
            aload 2 /* data */
            ifnonnull 5
         2: .line 192
            new java.lang.StringBuilder
            dup
            ldc "Invalid secret of configmap in namespace "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.namespace:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.name:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         3: .line 193
            ldc ", the data "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "entry is empty"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 192
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            areturn
         5: .line 195
      StackMap locals: io.vertx.core.json.JsonObject
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.key:Ljava/lang/String;
            ifnonnull 9
         6: .line 196
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.secret:Z
            ifeq 8
         7: .line 197
            new io.vertx.core.json.JsonObject
            dup
            aload 2 /* data */
            invokevirtual io.vertx.core.json.JsonObject.getMap:()Ljava/util/Map;
            invokestatic io.vertx.config.kubernetes.ConfigMapStore.asSecretObjectMap:(Ljava/util/Map;)Ljava/util/Map;
            invokespecial io.vertx.core.json.JsonObject.<init>:(Ljava/util/Map;)V
            invokevirtual io.vertx.core.json.JsonObject.toBuffer:()Lio/vertx/core/buffer/Buffer;
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            areturn
         8: .line 199
      StackMap locals:
      StackMap stack:
            new io.vertx.core.json.JsonObject
            dup
            aload 2 /* data */
            invokevirtual io.vertx.core.json.JsonObject.getMap:()Ljava/util/Map;
            invokestatic io.vertx.config.kubernetes.ConfigMapStore.asObjectMap:(Ljava/util/Map;)Ljava/util/Map;
            invokespecial io.vertx.core.json.JsonObject.<init>:(Ljava/util/Map;)V
            invokevirtual io.vertx.core.json.JsonObject.toBuffer:()Lio/vertx/core/buffer/Buffer;
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            areturn
         9: .line 201
      StackMap locals:
      StackMap stack:
            aload 2 /* data */
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.key:Ljava/lang/String;
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            astore 3 /* string */
        start local 3 // java.lang.String string
        10: .line 202
            aload 3 /* string */
            ifnonnull 12
        11: .line 203
            new java.lang.StringBuilder
            dup
            ldc "Cannot find key '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.key:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "' in the configmap or secret '"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.name:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "'"
            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;
            areturn
        12: .line 205
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.secret:Z
            ifeq 14
        13: .line 206
            getstatic io.vertx.config.kubernetes.ConfigMapStore.DECODER:Ljava/util/Base64$Decoder;
            aload 3 /* string */
            invokevirtual java.util.Base64$Decoder.decode:(Ljava/lang/String;)[B
            invokestatic io.vertx.core.buffer.Buffer.buffer:([B)Lio/vertx/core/buffer/Buffer;
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            areturn
        14: .line 208
      StackMap locals:
      StackMap stack:
            aload 3 /* string */
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            areturn
        end local 3 // java.lang.String string
        end local 2 // io.vertx.core.json.JsonObject data
        end local 1 // io.vertx.ext.web.client.HttpResponse response
        end local 0 // io.vertx.config.kubernetes.ConfigMapStore this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0      this  Lio/vertx/config/kubernetes/ConfigMapStore;
            0   15     1  response  Lio/vertx/ext/web/client/HttpResponse<Lio/vertx/core/buffer/Buffer;>;
            1   15     2      data  Lio/vertx/core/json/JsonObject;
           10   15     3    string  Ljava/lang/String;
    Signature: (Lio/vertx/ext/web/client/HttpResponse<Lio/vertx/core/buffer/Buffer;>;)Lio/vertx/core/Future<Lio/vertx/core/buffer/Buffer;>;
    MethodParameters:
          Name  Flags
      response  

  private static java.util.Map<java.lang.String, java.lang.Object> asObjectMap(java.util.Map<java.lang.String, java.lang.Object>);
    descriptor: (Ljava/util/Map;)Ljava/util/Map;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.util.Map source
         0: .line 212
            aload 0 /* source */
            ifnonnull 2
         1: .line 213
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            areturn
         2: .line 215
      StackMap locals:
      StackMap stack:
            aload 0 /* source */
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.stream:()Ljava/util/stream/Stream;
            invokedynamic apply()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;
                  java/util/Map$Entry.getKey()Ljava/lang/Object; (9 itf)
                  (Ljava/util/Map$Entry;)Ljava/lang/String;
         3: .line 216
            invokedynamic apply()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/kubernetes/ConfigMapStore.lambda$6(Ljava/util/Map$Entry;)Ljava/lang/Object; (6)
                  (Ljava/util/Map$Entry;)Ljava/lang/Object;
         4: .line 215
            invokestatic java.util.stream.Collectors.toMap:(Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/stream/Collector;
            invokeinterface java.util.stream.Stream.collect:(Ljava/util/stream/Collector;)Ljava/lang/Object;
            checkcast java.util.Map
            areturn
        end local 0 // java.util.Map source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0  source  Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;
    Signature: (Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;)Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;
    MethodParameters:
        Name  Flags
      source  

  private static java.util.Map<java.lang.String, java.lang.Object> asSecretObjectMap(java.util.Map<java.lang.String, java.lang.Object>);
    descriptor: (Ljava/util/Map;)Ljava/util/Map;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.util.Map source
         0: .line 221
            aload 0 /* source */
            ifnonnull 2
         1: .line 222
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            areturn
         2: .line 224
      StackMap locals:
      StackMap stack:
            aload 0 /* source */
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.stream:()Ljava/util/stream/Stream;
         3: .line 225
            invokedynamic apply()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;
                  java/util/Map$Entry.getKey()Ljava/lang/Object; (9 itf)
                  (Ljava/util/Map$Entry;)Ljava/lang/String;
         4: .line 226
            invokedynamic apply()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/kubernetes/ConfigMapStore.lambda$8(Ljava/util/Map$Entry;)Ljava/lang/Object; (6)
                  (Ljava/util/Map$Entry;)Ljava/lang/Object;
         5: .line 225
            invokestatic java.util.stream.Collectors.toMap:(Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/stream/Collector;
            invokeinterface java.util.stream.Stream.collect:(Ljava/util/stream/Collector;)Ljava/lang/Object;
            checkcast java.util.Map
         6: .line 224
            areturn
        end local 0 // java.util.Map source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0  source  Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;
    Signature: (Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;)Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;
    MethodParameters:
        Name  Flags
      source  

  private io.vertx.core.Future lambda$0(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)Lio/vertx/core/Future;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.config.kubernetes.ConfigMapStore this
        start local 1 // java.lang.Throwable throwable
         0: .line 123
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.optional:Z
            ifeq 1
            invokestatic io.vertx.core.buffer.Buffer.buffer:()Lio/vertx/core/buffer/Buffer;
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 1 /* throwable */
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
      StackMap locals:
      StackMap stack: io.vertx.core.Future
         2: areturn
        end local 1 // java.lang.Throwable throwable
        end local 0 // io.vertx.config.kubernetes.ConfigMapStore this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lio/vertx/config/kubernetes/ConfigMapStore;
            0    3     1  throwable  Ljava/lang/Throwable;

  private void lambda$2(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.config.kubernetes.ConfigMapStore this
        start local 1 // java.lang.String tk
         0: .line 126
            aload 0 /* this */
            aload 1 /* tk */
            putfield io.vertx.config.kubernetes.ConfigMapStore.token:Ljava/lang/String;
         1: .line 127
            return
        end local 1 // java.lang.String tk
        end local 0 // io.vertx.config.kubernetes.ConfigMapStore this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/config/kubernetes/ConfigMapStore;
            0    2     1    tk  Ljava/lang/String;

  private io.vertx.core.Future lambda$3(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // io.vertx.config.kubernetes.ConfigMapStore this
        start local 1 // java.lang.String token
         0: .line 140
            aload 1 /* token */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 2
         1: .line 141
            ldc "{}"
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            areturn
         2: .line 144
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "/api/v1/namespaces/"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.namespace:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 2 /* path */
        start local 2 // java.lang.String path
         3: .line 145
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.secret:Z
            ifeq 6
         4: .line 146
            new java.lang.StringBuilder
            dup
            aload 2 /* path */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "/secrets/"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.name:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 2 /* path */
         5: .line 147
            goto 7
         6: .line 148
      StackMap locals: java.lang.String
      StackMap stack:
            new java.lang.StringBuilder
            dup
            aload 2 /* path */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "/configmaps/"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.name:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 2 /* path */
         7: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.config.kubernetes.ConfigMapStore.client:Lio/vertx/ext/web/client/WebClient;
            aload 2 /* path */
            invokeinterface io.vertx.ext.web.client.WebClient.get:(Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest;
         8: .line 152
            ldc "Authorization"
            new java.lang.StringBuilder
            dup
            ldc "Bearer "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* token */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface io.vertx.ext.web.client.HttpRequest.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/ext/web/client/HttpRequest;
         9: .line 153
            invokeinterface io.vertx.ext.web.client.HttpRequest.send:()Lio/vertx/core/Future;
        10: .line 154
            aload 0 /* this */
            invokedynamic apply(Lio/vertx/config/kubernetes/ConfigMapStore;)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/kubernetes/ConfigMapStore.lambda$4(Lio/vertx/ext/web/client/HttpResponse;)Lio/vertx/core/Future; (7)
                  (Lio/vertx/ext/web/client/HttpResponse;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.flatMap:(Ljava/util/function/Function;)Lio/vertx/core/Future;
        11: .line 151
            areturn
        end local 2 // java.lang.String path
        end local 1 // java.lang.String token
        end local 0 // io.vertx.config.kubernetes.ConfigMapStore this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0   this  Lio/vertx/config/kubernetes/ConfigMapStore;
            0   12     1  token  Ljava/lang/String;
            3   12     2   path  Ljava/lang/String;

  private static java.lang.Object lambda$6(java.util.Map$Entry);
    descriptor: (Ljava/util/Map$Entry;)Ljava/lang/Object;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.Map$Entry entry
         0: .line 216
            aload 0 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokestatic io.vertx.config.spi.utils.JsonObjectHelper.convert:(Ljava/lang/String;)Ljava/lang/Object;
            areturn
        end local 0 // java.util.Map$Entry entry
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  entry  Ljava/util/Map$Entry<Ljava/lang/String;Ljava/lang/Object;>;

  private static java.lang.Object lambda$8(java.util.Map$Entry);
    descriptor: (Ljava/util/Map$Entry;)Ljava/lang/Object;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // java.util.Map$Entry entry
         0: .line 227
            aload 0 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            astore 1 /* encodedString */
        start local 1 // java.lang.String encodedString
         1: .line 228
            new java.lang.String
            dup
            getstatic io.vertx.config.kubernetes.ConfigMapStore.DECODER:Ljava/util/Base64$Decoder;
            aload 1 /* encodedString */
            invokevirtual java.util.Base64$Decoder.decode:(Ljava/lang/String;)[B
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokespecial java.lang.String.<init>:([BLjava/nio/charset/Charset;)V
            astore 2 /* decodedString */
        start local 2 // java.lang.String decodedString
         2: .line 229
            aload 2 /* decodedString */
            invokestatic io.vertx.config.spi.utils.JsonObjectHelper.convert:(Ljava/lang/String;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.String decodedString
        end local 1 // java.lang.String encodedString
        end local 0 // java.util.Map$Entry entry
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0          entry  Ljava/util/Map$Entry<Ljava/lang/String;Ljava/lang/Object;>;
            1    3     1  encodedString  Ljava/lang/String;
            2    3     2  decodedString  Ljava/lang/String;

  private io.vertx.core.Future lambda$4(io.vertx.ext.web.client.HttpResponse);
    descriptor: (Lio/vertx/ext/web/client/HttpResponse;)Lio/vertx/core/Future;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.config.kubernetes.ConfigMapStore this
        start local 1 // io.vertx.ext.web.client.HttpResponse response
         0: .line 155
            aload 1 /* response */
            invokeinterface io.vertx.ext.web.client.HttpResponse.statusCode:()I
            sipush 404
            if_icmpne 2
         1: .line 156
            aload 0 /* this */
            invokevirtual io.vertx.config.kubernetes.ConfigMapStore.handle404:()Lio/vertx/core/Future;
            areturn
         2: .line 158
      StackMap locals:
      StackMap stack:
            aload 1 /* response */
            invokeinterface io.vertx.ext.web.client.HttpResponse.statusCode:()I
            sipush 403
            if_icmpne 4
         3: .line 159
            aload 0 /* this */
            invokevirtual io.vertx.config.kubernetes.ConfigMapStore.handle403:()Lio/vertx/core/Future;
            areturn
         4: .line 161
      StackMap locals:
      StackMap stack:
            aload 1 /* response */
            invokeinterface io.vertx.ext.web.client.HttpResponse.statusCode:()I
            sipush 200
            if_icmpeq 6
         5: .line 162
            aload 0 /* this */
            aload 1 /* response */
            invokevirtual io.vertx.config.kubernetes.ConfigMapStore.handleOtherErrors:(Lio/vertx/ext/web/client/HttpResponse;)Lio/vertx/core/Future;
            areturn
         6: .line 164
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* response */
            invokevirtual io.vertx.config.kubernetes.ConfigMapStore.handle200:(Lio/vertx/ext/web/client/HttpResponse;)Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.ext.web.client.HttpResponse response
        end local 0 // io.vertx.config.kubernetes.ConfigMapStore this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lio/vertx/config/kubernetes/ConfigMapStore;
            0    7     1  response  Lio/vertx/ext/web/client/HttpResponse<Lio/vertx/core/buffer/Buffer;>;
}
SourceFile: "ConfigMapStore.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public Decoder = java.util.Base64$Decoder of java.util.Base64
  public abstract Entry = java.util.Map$Entry of java.util.Map