public class io.vertx.servicediscovery.docker.DockerService
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.servicediscovery.docker.DockerService
  super_class: java.lang.Object
{
  private final java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  private java.util.List<java.lang.String> containerNames;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Ljava/lang/String;>;

  private java.util.List<io.vertx.servicediscovery.Record> records;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lio/vertx/servicediscovery/Record;>;

  public void <init>(com.github.dockerjava.api.model.Container, java.lang.String);
    descriptor: (Lcom/github/dockerjava/api/model/Container;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=3
        start local 0 // io.vertx.servicediscovery.docker.DockerService this
        start local 1 // com.github.dockerjava.api.model.Container container
        start local 2 // java.lang.String host
         0: .line 49
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield io.vertx.servicediscovery.docker.DockerService.records:Ljava/util/List;
         2: .line 50
            aload 0 /* this */
            aload 2 /* host */
            putfield io.vertx.servicediscovery.docker.DockerService.host:Ljava/lang/String;
         3: .line 51
            aload 0 /* this */
            aload 1 /* container */
            invokevirtual com.github.dockerjava.api.model.Container.getId:()Ljava/lang/String;
            putfield io.vertx.servicediscovery.docker.DockerService.containerId:Ljava/lang/String;
         4: .line 52
            aload 0 /* this */
            aload 1 /* container */
            invokevirtual com.github.dockerjava.api.model.Container.getNames:()[Ljava/lang/String;
            invokestatic java.util.Arrays.stream:([Ljava/lang/Object;)Ljava/util/stream/Stream;
            invokestatic java.util.stream.Collectors.toList:()Ljava/util/stream/Collector;
            invokeinterface java.util.stream.Stream.collect:(Ljava/util/stream/Collector;)Ljava/lang/Object;
            checkcast java.util.List
            putfield io.vertx.servicediscovery.docker.DockerService.containerNames:Ljava/util/List;
         5: .line 53
            aload 0 /* this */
            getfield io.vertx.servicediscovery.docker.DockerService.containerNames:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifne 8
         6: .line 54
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.servicediscovery.docker.DockerService.containerNames:Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            putfield io.vertx.servicediscovery.docker.DockerService.name:Ljava/lang/String;
         7: .line 55
            goto 9
         8: .line 56
      StackMap locals: io.vertx.servicediscovery.docker.DockerService com.github.dockerjava.api.model.Container java.lang.String
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.servicediscovery.docker.DockerService.containerId:Ljava/lang/String;
            putfield io.vertx.servicediscovery.docker.DockerService.name:Ljava/lang/String;
         9: .line 59
      StackMap locals:
      StackMap stack:
            aload 1 /* container */
            invokevirtual com.github.dockerjava.api.model.Container.getPorts:()[Lcom/github/dockerjava/api/model/ContainerPort;
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 15
      StackMap locals: io.vertx.servicediscovery.docker.DockerService com.github.dockerjava.api.model.Container java.lang.String top int int com.github.dockerjava.api.model.ContainerPort[]
      StackMap stack:
        10: aload 6
            iload 4
            aaload
            astore 3 /* port */
        start local 3 // com.github.dockerjava.api.model.ContainerPort port
        11: .line 60
            aload 0 /* this */
            aload 1 /* container */
            aload 3 /* port */
            invokevirtual io.vertx.servicediscovery.docker.DockerService.createRecord:(Lcom/github/dockerjava/api/model/Container;Lcom/github/dockerjava/api/model/ContainerPort;)Lio/vertx/servicediscovery/Record;
            astore 7 /* record */
        start local 7 // io.vertx.servicediscovery.Record record
        12: .line 61
            aload 7 /* record */
            ifnull 14
        13: .line 62
            aload 0 /* this */
            getfield io.vertx.servicediscovery.docker.DockerService.records:Ljava/util/List;
            aload 7 /* record */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 7 // io.vertx.servicediscovery.Record record
        end local 3 // com.github.dockerjava.api.model.ContainerPort port
        14: .line 59
      StackMap locals:
      StackMap stack:
            iinc 4 1
      StackMap locals:
      StackMap stack:
        15: iload 4
            iload 5
            if_icmplt 10
        16: .line 66
            return
        end local 2 // java.lang.String host
        end local 1 // com.github.dockerjava.api.model.Container container
        end local 0 // io.vertx.servicediscovery.docker.DockerService this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   17     0       this  Lio/vertx/servicediscovery/docker/DockerService;
            0   17     1  container  Lcom/github/dockerjava/api/model/Container;
            0   17     2       host  Ljava/lang/String;
           11   14     3       port  Lcom/github/dockerjava/api/model/ContainerPort;
           12   14     7     record  Lio/vertx/servicediscovery/Record;
    MethodParameters:
           Name  Flags
      container  
      host       

  public java.util.List<io.vertx.servicediscovery.Record> records();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.servicediscovery.docker.DockerService this
         0: .line 69
            aload 0 /* this */
            getfield io.vertx.servicediscovery.docker.DockerService.records:Ljava/util/List;
            areturn
        end local 0 // io.vertx.servicediscovery.docker.DockerService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/servicediscovery/docker/DockerService;
    Signature: ()Ljava/util/List<Lio/vertx/servicediscovery/Record;>;

  public java.lang.String name();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.servicediscovery.docker.DockerService this
         0: .line 73
            aload 0 /* this */
            getfield io.vertx.servicediscovery.docker.DockerService.name:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.servicediscovery.docker.DockerService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/servicediscovery/docker/DockerService;

  public java.util.List<java.lang.String> names();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.servicediscovery.docker.DockerService this
         0: .line 77
            aload 0 /* this */
            getfield io.vertx.servicediscovery.docker.DockerService.containerNames:Ljava/util/List;
            areturn
        end local 0 // io.vertx.servicediscovery.docker.DockerService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/servicediscovery/docker/DockerService;
    Signature: ()Ljava/util/List<Ljava/lang/String;>;

  public java.lang.String id();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.servicediscovery.docker.DockerService this
         0: .line 81
            aload 0 /* this */
            getfield io.vertx.servicediscovery.docker.DockerService.containerId:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.servicediscovery.docker.DockerService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/servicediscovery/docker/DockerService;

  public io.vertx.servicediscovery.Record createRecord(com.github.dockerjava.api.model.Container, com.github.dockerjava.api.model.ContainerPort);
    descriptor: (Lcom/github/dockerjava/api/model/Container;Lcom/github/dockerjava/api/model/ContainerPort;)Lio/vertx/servicediscovery/Record;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=9, args_size=3
        start local 0 // io.vertx.servicediscovery.docker.DockerService this
        start local 1 // com.github.dockerjava.api.model.Container container
        start local 2 // com.github.dockerjava.api.model.ContainerPort port
         0: .line 86
            new io.vertx.servicediscovery.Record
            dup
            invokespecial io.vertx.servicediscovery.Record.<init>:()V
         1: .line 87
            aload 0 /* this */
            getfield io.vertx.servicediscovery.docker.DockerService.name:Ljava/lang/String;
            invokevirtual io.vertx.servicediscovery.Record.setName:(Ljava/lang/String;)Lio/vertx/servicediscovery/Record;
         2: .line 86
            astore 3 /* record */
        start local 3 // io.vertx.servicediscovery.Record record
         3: .line 89
            aload 1 /* container */
            invokevirtual com.github.dockerjava.api.model.Container.getLabels:()Ljava/util/Map;
            astore 4 /* labels */
        start local 4 // java.util.Map labels
         4: .line 90
            aload 4 /* labels */
            ifnull 9
         5: .line 91
            aload 4 /* labels */
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 6
            goto 8
      StackMap locals: io.vertx.servicediscovery.docker.DockerService com.github.dockerjava.api.model.Container com.github.dockerjava.api.model.ContainerPort io.vertx.servicediscovery.Record java.util.Map top java.util.Iterator
      StackMap stack:
         6: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 5 /* entry */
        start local 5 // java.util.Map$Entry entry
         7: .line 92
            aload 3 /* record */
            invokevirtual io.vertx.servicediscovery.Record.getMetadata:()Lio/vertx/core/json/JsonObject;
            aload 5 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
            aload 5 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast java.lang.String
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            pop
        end local 5 // java.util.Map$Entry entry
         8: .line 91
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
         9: .line 96
      StackMap locals: io.vertx.servicediscovery.docker.DockerService com.github.dockerjava.api.model.Container com.github.dockerjava.api.model.ContainerPort io.vertx.servicediscovery.Record java.util.Map
      StackMap stack:
            new io.vertx.core.json.JsonArray
            dup
            invokespecial io.vertx.core.json.JsonArray.<init>:()V
            astore 5 /* names */
        start local 5 // io.vertx.core.json.JsonArray names
        10: .line 97
            aload 0 /* this */
            getfield io.vertx.servicediscovery.docker.DockerService.containerNames:Ljava/util/List;
            aload 5 /* names */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic accept(Lio/vertx/core/json/JsonArray;)Ljava/util/function/Consumer;
              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/core/json/JsonArray.add(Ljava/lang/String;)Lio/vertx/core/json/JsonArray; (5)
                  (Ljava/lang/String;)V
            invokeinterface java.util.List.forEach:(Ljava/util/function/Consumer;)V
        11: .line 98
            aload 3 /* record */
            invokevirtual io.vertx.servicediscovery.Record.getMetadata:()Lio/vertx/core/json/JsonObject;
            ldc "docker.names"
            aload 5 /* names */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Lio/vertx/core/json/JsonArray;)Lio/vertx/core/json/JsonObject;
            pop
        12: .line 99
            aload 3 /* record */
            invokevirtual io.vertx.servicediscovery.Record.getMetadata:()Lio/vertx/core/json/JsonObject;
            ldc "docker.name"
            aload 0 /* this */
            getfield io.vertx.servicediscovery.docker.DockerService.name:Ljava/lang/String;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            pop
        13: .line 100
            aload 3 /* record */
            invokevirtual io.vertx.servicediscovery.Record.getMetadata:()Lio/vertx/core/json/JsonObject;
            ldc "docker.id"
            aload 0 /* this */
            getfield io.vertx.servicediscovery.docker.DockerService.containerId:Ljava/lang/String;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            pop
        14: .line 102
            aload 4 /* labels */
            ifnull 15
            aload 4 /* labels */
            ldc "service.type"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.String
            goto 16
      StackMap locals: io.vertx.core.json.JsonArray
      StackMap stack:
        15: ldc "unknown"
      StackMap locals:
      StackMap stack: java.lang.String
        16: astore 7 /* type */
        start local 7 // java.lang.String type
        17: .line 103
            aload 7 /* type */
            ifnonnull 19
        18: .line 104
            ldc "unknown"
            astore 7 /* type */
        19: .line 107
      StackMap locals: io.vertx.servicediscovery.docker.DockerService com.github.dockerjava.api.model.Container com.github.dockerjava.api.model.ContainerPort io.vertx.servicediscovery.Record java.util.Map io.vertx.core.json.JsonArray top java.lang.String
      StackMap stack:
            aload 7 /* type */
            dup
            astore 8
            invokevirtual java.lang.String.hashCode:()I
            lookupswitch { // 1
            826978618: 20
              default: 22
          }
      StackMap locals: java.lang.String
      StackMap stack:
        20: aload 8
            ldc "http-endpoint"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 21
            goto 22
        21: .line 109
      StackMap locals:
      StackMap stack:
            aload 3 /* record */
            aload 2 /* port */
            aload 4 /* labels */
            invokestatic io.vertx.servicediscovery.docker.DockerService.manageHttpService:(Lio/vertx/servicediscovery/Record;Lcom/github/dockerjava/api/model/ContainerPort;Ljava/util/Map;)Lio/vertx/servicediscovery/Record;
            areturn
        22: .line 111
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* record */
            aload 2 /* port */
            invokevirtual io.vertx.servicediscovery.docker.DockerService.manageUnknownService:(Lio/vertx/servicediscovery/Record;Lcom/github/dockerjava/api/model/ContainerPort;)Lio/vertx/servicediscovery/Record;
            areturn
        end local 7 // java.lang.String type
        end local 5 // io.vertx.core.json.JsonArray names
        end local 4 // java.util.Map labels
        end local 3 // io.vertx.servicediscovery.Record record
        end local 2 // com.github.dockerjava.api.model.ContainerPort port
        end local 1 // com.github.dockerjava.api.model.Container container
        end local 0 // io.vertx.servicediscovery.docker.DockerService this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   23     0       this  Lio/vertx/servicediscovery/docker/DockerService;
            0   23     1  container  Lcom/github/dockerjava/api/model/Container;
            0   23     2       port  Lcom/github/dockerjava/api/model/ContainerPort;
            3   23     3     record  Lio/vertx/servicediscovery/Record;
            4   23     4     labels  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
            7    8     5      entry  Ljava/util/Map$Entry<Ljava/lang/String;Ljava/lang/String;>;
           10   23     5      names  Lio/vertx/core/json/JsonArray;
           17   23     7       type  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      container  
      port       

  private io.vertx.servicediscovery.Record manageUnknownService(io.vertx.servicediscovery.Record, com.github.dockerjava.api.model.ContainerPort);
    descriptor: (Lio/vertx/servicediscovery/Record;Lcom/github/dockerjava/api/model/ContainerPort;)Lio/vertx/servicediscovery/Record;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.servicediscovery.docker.DockerService this
        start local 1 // io.vertx.servicediscovery.Record record
        start local 2 // com.github.dockerjava.api.model.ContainerPort port
         0: .line 116
            aload 2 /* port */
            invokevirtual com.github.dockerjava.api.model.ContainerPort.getPublicPort:()Ljava/lang/Integer;
            ifnull 1
            aload 2 /* port */
            invokevirtual com.github.dockerjava.api.model.ContainerPort.getPublicPort:()Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            ifne 2
         1: .line 117
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
         2: .line 119
      StackMap locals:
      StackMap stack:
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 3 /* location */
        start local 3 // io.vertx.core.json.JsonObject location
         3: .line 120
            aload 3 /* location */
            ldc "port"
            aload 2 /* port */
            invokevirtual com.github.dockerjava.api.model.ContainerPort.getPublicPort:()Ljava/lang/Integer;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Integer;)Lio/vertx/core/json/JsonObject;
            pop
         4: .line 121
            aload 3 /* location */
            ldc "internal-port"
            aload 2 /* port */
            invokevirtual com.github.dockerjava.api.model.ContainerPort.getPrivatePort:()Ljava/lang/Integer;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Integer;)Lio/vertx/core/json/JsonObject;
            pop
         5: .line 122
            aload 3 /* location */
            ldc "type"
            aload 2 /* port */
            invokevirtual com.github.dockerjava.api.model.ContainerPort.getType:()Ljava/lang/String;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            pop
         6: .line 123
            aload 3 /* location */
            ldc "ip"
            aload 0 /* this */
            getfield io.vertx.servicediscovery.docker.DockerService.host:Ljava/lang/String;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            pop
         7: .line 125
            aload 1 /* record */
            aload 3 /* location */
            invokevirtual io.vertx.servicediscovery.Record.setLocation:(Lio/vertx/core/json/JsonObject;)Lio/vertx/servicediscovery/Record;
            ldc "unknown"
            invokevirtual io.vertx.servicediscovery.Record.setType:(Ljava/lang/String;)Lio/vertx/servicediscovery/Record;
            areturn
        end local 3 // io.vertx.core.json.JsonObject location
        end local 2 // com.github.dockerjava.api.model.ContainerPort port
        end local 1 // io.vertx.servicediscovery.Record record
        end local 0 // io.vertx.servicediscovery.docker.DockerService this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lio/vertx/servicediscovery/docker/DockerService;
            0    8     1    record  Lio/vertx/servicediscovery/Record;
            0    8     2      port  Lcom/github/dockerjava/api/model/ContainerPort;
            3    8     3  location  Lio/vertx/core/json/JsonObject;
    MethodParameters:
        Name  Flags
      record  
      port    

  private static io.vertx.servicediscovery.Record manageHttpService(io.vertx.servicediscovery.Record, com.github.dockerjava.api.model.ContainerPort, java.util.Map<java.lang.String, java.lang.String>);
    descriptor: (Lio/vertx/servicediscovery/Record;Lcom/github/dockerjava/api/model/ContainerPort;Ljava/util/Map;)Lio/vertx/servicediscovery/Record;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.vertx.servicediscovery.Record record
        start local 1 // com.github.dockerjava.api.model.ContainerPort port
        start local 2 // java.util.Map labels
         0: .line 129
            aload 1 /* port */
            invokevirtual com.github.dockerjava.api.model.ContainerPort.getPublicPort:()Ljava/lang/Integer;
            ifnull 1
            aload 1 /* port */
            invokevirtual com.github.dockerjava.api.model.ContainerPort.getPublicPort:()Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            ifne 2
         1: .line 130
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
         2: .line 132
      StackMap locals:
      StackMap stack:
            aload 0 /* record */
            ldc "http-endpoint"
            invokevirtual io.vertx.servicediscovery.Record.setType:(Ljava/lang/String;)Lio/vertx/servicediscovery/Record;
            pop
         3: .line 133
            new io.vertx.servicediscovery.types.HttpLocation
            dup
            invokespecial io.vertx.servicediscovery.types.HttpLocation.<init>:()V
         4: .line 134
            aload 1 /* port */
            invokevirtual com.github.dockerjava.api.model.ContainerPort.getIp:()Ljava/lang/String;
            invokevirtual io.vertx.servicediscovery.types.HttpLocation.setHost:(Ljava/lang/String;)Lio/vertx/servicediscovery/types/HttpLocation;
         5: .line 135
            aload 1 /* port */
            invokevirtual com.github.dockerjava.api.model.ContainerPort.getPublicPort:()Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            invokevirtual io.vertx.servicediscovery.types.HttpLocation.setPort:(I)Lio/vertx/servicediscovery/types/HttpLocation;
         6: .line 133
            astore 3 /* location */
        start local 3 // io.vertx.servicediscovery.types.HttpLocation location
         7: .line 137
            aload 2 /* labels */
            ldc "ssl"
            invokestatic io.vertx.servicediscovery.docker.DockerService.isTrue:(Ljava/util/Map;Ljava/lang/String;)Z
            ifne 8
            aload 1 /* port */
            invokevirtual com.github.dockerjava.api.model.ContainerPort.getPrivatePort:()Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            sipush 443
            if_icmpne 9
         8: .line 138
      StackMap locals: io.vertx.servicediscovery.types.HttpLocation
      StackMap stack:
            aload 3 /* location */
            iconst_1
            invokevirtual io.vertx.servicediscovery.types.HttpLocation.setSsl:(Z)Lio/vertx/servicediscovery/types/HttpLocation;
            pop
         9: .line 140
      StackMap locals:
      StackMap stack:
            aload 0 /* record */
            aload 3 /* location */
            invokevirtual io.vertx.servicediscovery.types.HttpLocation.toJson:()Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.servicediscovery.Record.setLocation:(Lio/vertx/core/json/JsonObject;)Lio/vertx/servicediscovery/Record;
            areturn
        end local 3 // io.vertx.servicediscovery.types.HttpLocation location
        end local 2 // java.util.Map labels
        end local 1 // com.github.dockerjava.api.model.ContainerPort port
        end local 0 // io.vertx.servicediscovery.Record record
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0    record  Lio/vertx/servicediscovery/Record;
            0   10     1      port  Lcom/github/dockerjava/api/model/ContainerPort;
            0   10     2    labels  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
            7   10     3  location  Lio/vertx/servicediscovery/types/HttpLocation;
    Signature: (Lio/vertx/servicediscovery/Record;Lcom/github/dockerjava/api/model/ContainerPort;Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;)Lio/vertx/servicediscovery/Record;
    MethodParameters:
        Name  Flags
      record  
      port    
      labels  

  private static boolean isTrue(java.util.Map<java.lang.String, java.lang.String>, java.lang.String);
    descriptor: (Ljava/util/Map;Ljava/lang/String;)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.util.Map labels
        start local 1 // java.lang.String key
         0: .line 144
            aload 0 /* labels */
            ifnull 1
            ldc "true"
            aload 0 /* labels */
            aload 1 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.String
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.String key
        end local 0 // java.util.Map labels
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0  labels  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
            0    2     1     key  Ljava/lang/String;
    Signature: (Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;Ljava/lang/String;)Z
    MethodParameters:
        Name  Flags
      labels  
      key     
}
SourceFile: "DockerService.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract Entry = java.util.Map$Entry of java.util.Map