final class com.sun.xml.internal.ws.transport.http.server.ServerMgr
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.sun.xml.internal.ws.transport.http.server.ServerMgr
  super_class: java.lang.Object
{
  private static final com.sun.xml.internal.ws.transport.http.server.ServerMgr serverMgr;
    descriptor: Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.util.logging.Logger LOGGER;
    descriptor: Ljava/util/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final java.util.Map<java.net.InetSocketAddress, com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState> servers;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/net/InetSocketAddress;Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr$ServerState;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 51
            new com.sun.xml.internal.ws.transport.http.server.ServerMgr
            dup
            invokespecial com.sun.xml.internal.ws.transport.http.server.ServerMgr.<init>:()V
            putstatic com.sun.xml.internal.ws.transport.http.server.ServerMgr.serverMgr:Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr;
         1: .line 54
            ldc "com.sun.xml.internal.ws.server.http"
         2: .line 53
            invokestatic java.util.logging.Logger.getLogger:(Ljava/lang/String;)Ljava/util/logging/Logger;
         3: .line 52
            putstatic com.sun.xml.internal.ws.transport.http.server.ServerMgr.LOGGER:Ljava/util/logging/Logger;
         4: .line 54
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr this
         0: .line 57
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 55
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield com.sun.xml.internal.ws.transport.http.server.ServerMgr.servers:Ljava/util/Map;
         2: .line 57
            return
        end local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr;

  static com.sun.xml.internal.ws.transport.http.server.ServerMgr getInstance();
    descriptor: ()Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 64
            getstatic com.sun.xml.internal.ws.transport.http.server.ServerMgr.serverMgr:Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  com.sun.net.httpserver.HttpContext createContext(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/sun/net/httpserver/HttpContext;
    flags: (0x0000) 
    Code:
      stack=7, locals=11, args_size=2
        start local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr this
        start local 1 // java.lang.String address
         0: .line 76
            new java.net.URL
            dup
            aload 1 /* address */
            invokespecial java.net.URL.<init>:(Ljava/lang/String;)V
            astore 4 /* url */
        start local 4 // java.net.URL url
         1: .line 77
            aload 4 /* url */
            invokevirtual java.net.URL.getPort:()I
            istore 5 /* port */
        start local 5 // int port
         2: .line 78
            iload 5 /* port */
            iconst_m1
            if_icmpne 4
         3: .line 79
            aload 4 /* url */
            invokevirtual java.net.URL.getDefaultPort:()I
            istore 5 /* port */
         4: .line 81
      StackMap locals: com.sun.xml.internal.ws.transport.http.server.ServerMgr java.lang.String top top java.net.URL int
      StackMap stack:
            new java.net.InetSocketAddress
            dup
            aload 4 /* url */
            invokevirtual java.net.URL.getHost:()Ljava/lang/String;
         5: .line 82
            iload 5 /* port */
         6: .line 81
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/lang/String;I)V
            astore 6 /* inetAddress */
        start local 6 // java.net.InetSocketAddress inetAddress
         7: .line 83
            aload 0 /* this */
            getfield com.sun.xml.internal.ws.transport.http.server.ServerMgr.servers:Ljava/util/Map;
            dup
            astore 7
            monitorenter
         8: .line 84
            aload 0 /* this */
            getfield com.sun.xml.internal.ws.transport.http.server.ServerMgr.servers:Ljava/util/Map;
            aload 6 /* inetAddress */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState
            astore 3 /* state */
        start local 3 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState state
         9: .line 85
            aload 3 /* state */
            ifnonnull 36
        10: .line 86
            aconst_null
            astore 8 /* free */
        start local 8 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState free
        11: .line 87
            aload 0 /* this */
            getfield com.sun.xml.internal.ws.transport.http.server.ServerMgr.servers:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 10
            goto 16
      StackMap locals: com.sun.xml.internal.ws.transport.http.server.ServerMgr java.lang.String top com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState java.net.URL int java.net.InetSocketAddress java.util.Map com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState top java.util.Iterator
      StackMap stack:
        12: aload 10
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState
            astore 9 /* ss */
        start local 9 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState ss
        13: .line 88
            iload 5 /* port */
            aload 9 /* ss */
            invokevirtual com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.getServer:()Lcom/sun/net/httpserver/HttpServer;
            invokevirtual com.sun.net.httpserver.HttpServer.getAddress:()Ljava/net/InetSocketAddress;
            invokevirtual java.net.InetSocketAddress.getPort:()I
            if_icmpne 16
        14: .line 89
            aload 9 /* ss */
            astore 8 /* free */
        15: .line 90
            goto 17
        end local 9 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState ss
        16: .line 87
      StackMap locals:
      StackMap stack:
            aload 10
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 12
        17: .line 93
      StackMap locals: com.sun.xml.internal.ws.transport.http.server.ServerMgr java.lang.String top com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState java.net.URL int java.net.InetSocketAddress java.util.Map com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState
      StackMap stack:
            aload 6 /* inetAddress */
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            invokevirtual java.net.InetAddress.isAnyLocalAddress:()Z
            ifeq 20
            aload 8 /* free */
            ifnull 20
        18: .line 94
            aload 8 /* free */
            astore 3 /* state */
        19: .line 95
            goto 36
        20: .line 96
      StackMap locals:
      StackMap stack:
            getstatic com.sun.xml.internal.ws.transport.http.server.ServerMgr.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINE:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 22
        21: .line 97
            getstatic com.sun.xml.internal.ws.transport.http.server.ServerMgr.LOGGER:Ljava/util/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Creating new HTTP Server at "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 6 /* inetAddress */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.util.logging.Logger.fine:(Ljava/lang/String;)V
        22: .line 100
      StackMap locals:
      StackMap stack:
            aload 6 /* inetAddress */
            iconst_0
            invokestatic com.sun.net.httpserver.HttpServer.create:(Ljava/net/InetSocketAddress;I)Lcom/sun/net/httpserver/HttpServer;
            astore 2 /* server */
        start local 2 // com.sun.net.httpserver.HttpServer server
        23: .line 101
            aload 2 /* server */
            invokestatic java.util.concurrent.Executors.newCachedThreadPool:()Ljava/util/concurrent/ExecutorService;
            invokevirtual com.sun.net.httpserver.HttpServer.setExecutor:(Ljava/util/concurrent/Executor;)V
        24: .line 102
            aload 4 /* url */
            invokevirtual java.net.URL.toURI:()Ljava/net/URI;
            invokevirtual java.net.URI.getPath:()Ljava/lang/String;
            astore 9 /* path */
        start local 9 // java.lang.String path
        25: .line 103
            getstatic com.sun.xml.internal.ws.transport.http.server.ServerMgr.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINE:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 27
        26: .line 104
            getstatic com.sun.xml.internal.ws.transport.http.server.ServerMgr.LOGGER:Ljava/util/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Creating HTTP Context at = "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 9 /* path */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.util.logging.Logger.fine:(Ljava/lang/String;)V
        27: .line 106
      StackMap locals: com.sun.xml.internal.ws.transport.http.server.ServerMgr java.lang.String com.sun.net.httpserver.HttpServer com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState java.net.URL int java.net.InetSocketAddress java.util.Map com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState java.lang.String
      StackMap stack:
            aload 2 /* server */
            aload 9 /* path */
            invokevirtual com.sun.net.httpserver.HttpServer.createContext:(Ljava/lang/String;)Lcom/sun/net/httpserver/HttpContext;
            astore 10 /* context */
        start local 10 // com.sun.net.httpserver.HttpContext context
        28: .line 107
            aload 2 /* server */
            invokevirtual com.sun.net.httpserver.HttpServer.start:()V
        29: .line 112
            aload 2 /* server */
            invokevirtual com.sun.net.httpserver.HttpServer.getAddress:()Ljava/net/InetSocketAddress;
            astore 6 /* inetAddress */
        30: .line 114
            getstatic com.sun.xml.internal.ws.transport.http.server.ServerMgr.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINE:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 32
        31: .line 115
            getstatic com.sun.xml.internal.ws.transport.http.server.ServerMgr.LOGGER:Ljava/util/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "HTTP server started = "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 6 /* inetAddress */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.util.logging.Logger.fine:(Ljava/lang/String;)V
        32: .line 117
      StackMap locals: com.sun.net.httpserver.HttpContext
      StackMap stack:
            new com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState
            dup
            aload 2 /* server */
            aload 9 /* path */
            invokespecial com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.<init>:(Lcom/sun/net/httpserver/HttpServer;Ljava/lang/String;)V
            astore 3 /* state */
        33: .line 118
            aload 0 /* this */
            getfield com.sun.xml.internal.ws.transport.http.server.ServerMgr.servers:Ljava/util/Map;
            aload 6 /* inetAddress */
            aload 3 /* state */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        34: .line 119
            aload 10 /* context */
            aload 7
            monitorexit
        35: areturn
        end local 10 // com.sun.net.httpserver.HttpContext context
        end local 9 // java.lang.String path
        end local 8 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState free
        end local 2 // com.sun.net.httpserver.HttpServer server
        36: .line 83
      StackMap locals: com.sun.xml.internal.ws.transport.http.server.ServerMgr java.lang.String top com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState java.net.URL int java.net.InetSocketAddress java.util.Map
      StackMap stack:
            aload 7
            monitorexit
        37: goto 40
        end local 3 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState state
      StackMap locals: com.sun.xml.internal.ws.transport.http.server.ServerMgr java.lang.String top top java.net.URL int java.net.InetSocketAddress java.util.Map
      StackMap stack: java.lang.Throwable
        38: aload 7
            monitorexit
        39: athrow
        start local 3 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState state
        40: .line 123
      StackMap locals: com.sun.xml.internal.ws.transport.http.server.ServerMgr java.lang.String top com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState java.net.URL int java.net.InetSocketAddress
      StackMap stack:
            aload 3 /* state */
            invokevirtual com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.getServer:()Lcom/sun/net/httpserver/HttpServer;
            astore 2 /* server */
        start local 2 // com.sun.net.httpserver.HttpServer server
        41: .line 125
            aload 3 /* state */
            invokevirtual com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.getPaths:()Ljava/util/Set;
            aload 4 /* url */
            invokevirtual java.net.URL.getPath:()Ljava/lang/String;
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifeq 46
        42: .line 126
            new java.lang.StringBuilder
            dup
            ldc "Context with URL path "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* url */
            invokevirtual java.net.URL.getPath:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " already exists on the server "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* server */
            invokevirtual com.sun.net.httpserver.HttpServer.getAddress:()Ljava/net/InetSocketAddress;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 7 /* err */
        start local 7 // java.lang.String err
        43: .line 127
            getstatic com.sun.xml.internal.ws.transport.http.server.ServerMgr.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINE:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 45
        44: .line 128
            getstatic com.sun.xml.internal.ws.transport.http.server.ServerMgr.LOGGER:Ljava/util/logging/Logger;
            aload 7 /* err */
            invokevirtual java.util.logging.Logger.fine:(Ljava/lang/String;)V
        45: .line 130
      StackMap locals: com.sun.xml.internal.ws.transport.http.server.ServerMgr java.lang.String com.sun.net.httpserver.HttpServer com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState java.net.URL int java.net.InetSocketAddress java.lang.String
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            aload 7 /* err */
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        end local 7 // java.lang.String err
        46: .line 133
      StackMap locals:
      StackMap stack:
            getstatic com.sun.xml.internal.ws.transport.http.server.ServerMgr.LOGGER:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINE:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 48
        47: .line 134
            getstatic com.sun.xml.internal.ws.transport.http.server.ServerMgr.LOGGER:Ljava/util/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Creating HTTP Context at = "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* url */
            invokevirtual java.net.URL.getPath:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.util.logging.Logger.fine:(Ljava/lang/String;)V
        48: .line 136
      StackMap locals:
      StackMap stack:
            aload 2 /* server */
            aload 4 /* url */
            invokevirtual java.net.URL.getPath:()Ljava/lang/String;
            invokevirtual com.sun.net.httpserver.HttpServer.createContext:(Ljava/lang/String;)Lcom/sun/net/httpserver/HttpContext;
            astore 7 /* context */
        start local 7 // com.sun.net.httpserver.HttpContext context
        49: .line 137
            aload 3 /* state */
            aload 4 /* url */
            invokevirtual java.net.URL.getPath:()Ljava/lang/String;
            invokevirtual com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.oneMoreContext:(Ljava/lang/String;)V
        50: .line 138
            aload 7 /* context */
        51: areturn
        end local 7 // com.sun.net.httpserver.HttpContext context
        end local 6 // java.net.InetSocketAddress inetAddress
        end local 5 // int port
        end local 4 // java.net.URL url
        end local 3 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState state
        end local 2 // com.sun.net.httpserver.HttpServer server
        52: .line 139
      StackMap locals: com.sun.xml.internal.ws.transport.http.server.ServerMgr java.lang.String
      StackMap stack: java.lang.Exception
            astore 2 /* e */
        start local 2 // java.lang.Exception e
        53: .line 140
            new com.sun.xml.internal.ws.server.ServerRtException
            dup
            ldc "server.rt.err"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* e */
            aastore
            invokespecial com.sun.xml.internal.ws.server.ServerRtException.<init>:(Ljava/lang/String;[Ljava/lang/Object;)V
            athrow
        end local 2 // java.lang.Exception e
        end local 1 // java.lang.String address
        end local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   54     0         this  Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr;
            0   54     1      address  Ljava/lang/String;
           23   36     2       server  Lcom/sun/net/httpserver/HttpServer;
           41   52     2       server  Lcom/sun/net/httpserver/HttpServer;
            9   38     3        state  Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr$ServerState;
           40   52     3        state  Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr$ServerState;
            1   52     4          url  Ljava/net/URL;
            2   52     5         port  I
            7   52     6  inetAddress  Ljava/net/InetSocketAddress;
           11   36     8         free  Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr$ServerState;
           13   16     9           ss  Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr$ServerState;
           25   36     9         path  Ljava/lang/String;
           28   36    10      context  Lcom/sun/net/httpserver/HttpContext;
           43   46     7          err  Ljava/lang/String;
           49   52     7      context  Lcom/sun/net/httpserver/HttpContext;
           53   54     2            e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           8    35      38  any
          36    37      38  any
          38    39      38  any
           0    35      52  Class java.lang.Exception
          36    51      52  Class java.lang.Exception
    MethodParameters:
         Name  Flags
      address  

  void removeContext(com.sun.net.httpserver.HttpContext);
    descriptor: (Lcom/sun/net/httpserver/HttpContext;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr this
        start local 1 // com.sun.net.httpserver.HttpContext context
         0: .line 149
            aload 1 /* context */
            invokevirtual com.sun.net.httpserver.HttpContext.getServer:()Lcom/sun/net/httpserver/HttpServer;
            invokevirtual com.sun.net.httpserver.HttpServer.getAddress:()Ljava/net/InetSocketAddress;
            astore 2 /* inetAddress */
        start local 2 // java.net.InetSocketAddress inetAddress
         1: .line 150
            aload 0 /* this */
            getfield com.sun.xml.internal.ws.transport.http.server.ServerMgr.servers:Ljava/util/Map;
            dup
            astore 3
            monitorenter
         2: .line 151
            aload 0 /* this */
            getfield com.sun.xml.internal.ws.transport.http.server.ServerMgr.servers:Ljava/util/Map;
            aload 2 /* inetAddress */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState
            astore 4 /* state */
        start local 4 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState state
         3: .line 152
            aload 4 /* state */
            invokevirtual com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.noOfContexts:()I
            istore 5 /* instances */
        start local 5 // int instances
         4: .line 153
            iload 5 /* instances */
            iconst_2
            if_icmpge 9
         5: .line 154
            aload 4 /* state */
            invokevirtual com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.getServer:()Lcom/sun/net/httpserver/HttpServer;
            invokevirtual com.sun.net.httpserver.HttpServer.getExecutor:()Ljava/util/concurrent/Executor;
            checkcast java.util.concurrent.ExecutorService
            invokeinterface java.util.concurrent.ExecutorService.shutdown:()V
         6: .line 155
            aload 4 /* state */
            invokevirtual com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.getServer:()Lcom/sun/net/httpserver/HttpServer;
            iconst_0
            invokevirtual com.sun.net.httpserver.HttpServer.stop:(I)V
         7: .line 156
            aload 0 /* this */
            getfield com.sun.xml.internal.ws.transport.http.server.ServerMgr.servers:Ljava/util/Map;
            aload 2 /* inetAddress */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         8: .line 157
            goto 11
         9: .line 158
      StackMap locals: com.sun.xml.internal.ws.transport.http.server.ServerMgr com.sun.net.httpserver.HttpContext java.net.InetSocketAddress java.util.Map com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState int
      StackMap stack:
            aload 4 /* state */
            invokevirtual com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.getServer:()Lcom/sun/net/httpserver/HttpServer;
            aload 1 /* context */
            invokevirtual com.sun.net.httpserver.HttpServer.removeContext:(Lcom/sun/net/httpserver/HttpContext;)V
        10: .line 159
            aload 4 /* state */
            aload 1 /* context */
            invokevirtual com.sun.net.httpserver.HttpContext.getPath:()Ljava/lang/String;
            invokevirtual com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.oneLessContext:(Ljava/lang/String;)V
        end local 5 // int instances
        end local 4 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState state
        11: .line 150
      StackMap locals:
      StackMap stack:
            aload 3
            monitorexit
        12: goto 15
      StackMap locals:
      StackMap stack: java.lang.Throwable
        13: aload 3
            monitorexit
        14: athrow
        15: .line 162
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.net.InetSocketAddress inetAddress
        end local 1 // com.sun.net.httpserver.HttpContext context
        end local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   16     0         this  Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr;
            0   16     1      context  Lcom/sun/net/httpserver/HttpContext;
            1   16     2  inetAddress  Ljava/net/InetSocketAddress;
            3   11     4        state  Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr$ServerState;
            4   11     5    instances  I
      Exception table:
        from    to  target  type
           2    12      13  any
          13    14      13  any
    MethodParameters:
         Name  Flags
      context  
}
SourceFile: "ServerMgr.java"
NestMembers:
  com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState
InnerClasses:
  private final ServerState = com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState of com.sun.xml.internal.ws.transport.http.server.ServerMgr