final class com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState
  super_class: java.lang.Object
{
  private final com.sun.net.httpserver.HttpServer server;
    descriptor: Lcom/sun/net/httpserver/HttpServer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int instances;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private final java.util.Set<java.lang.String> paths;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Ljava/lang/String;>;

  void <init>(com.sun.net.httpserver.HttpServer, java.lang.String);
    descriptor: (Lcom/sun/net/httpserver/HttpServer;Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState this
        start local 1 // com.sun.net.httpserver.HttpServer server
        start local 2 // java.lang.String path
         0: .line 169
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 167
            aload 0 /* this */
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            putfield com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.paths:Ljava/util/Set;
         2: .line 170
            aload 0 /* this */
            aload 1 /* server */
            putfield com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.server:Lcom/sun/net/httpserver/HttpServer;
         3: .line 171
            aload 0 /* this */
            iconst_1
            putfield com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.instances:I
         4: .line 172
            aload 0 /* this */
            getfield com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.paths:Ljava/util/Set;
            aload 2 /* path */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         5: .line 173
            return
        end local 2 // java.lang.String path
        end local 1 // com.sun.net.httpserver.HttpServer server
        end local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr$ServerState;
            0    6     1  server  Lcom/sun/net/httpserver/HttpServer;
            0    6     2    path  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      server  
      path    

  public com.sun.net.httpserver.HttpServer getServer();
    descriptor: ()Lcom/sun/net/httpserver/HttpServer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState this
         0: .line 176
            aload 0 /* this */
            getfield com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.server:Lcom/sun/net/httpserver/HttpServer;
            areturn
        end local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr$ServerState;

  public void oneMoreContext(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState this
        start local 1 // java.lang.String path
         0: .line 180
            aload 0 /* this */
            dup
            getfield com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.instances:I
            iconst_1
            iadd
            putfield com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.instances:I
         1: .line 181
            aload 0 /* this */
            getfield com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.paths:Ljava/util/Set;
            aload 1 /* path */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         2: .line 182
            return
        end local 1 // java.lang.String path
        end local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr$ServerState;
            0    3     1  path  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  

  public void oneLessContext(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState this
        start local 1 // java.lang.String path
         0: .line 185
            aload 0 /* this */
            dup
            getfield com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.instances:I
            iconst_1
            isub
            putfield com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.instances:I
         1: .line 186
            aload 0 /* this */
            getfield com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.paths:Ljava/util/Set;
            aload 1 /* path */
            invokeinterface java.util.Set.remove:(Ljava/lang/Object;)Z
            pop
         2: .line 187
            return
        end local 1 // java.lang.String path
        end local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr$ServerState;
            0    3     1  path  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  

  public int noOfContexts();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState this
         0: .line 190
            aload 0 /* this */
            getfield com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.instances:I
            ireturn
        end local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr$ServerState;

  public java.util.Set<java.lang.String> getPaths();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState this
         0: .line 194
            aload 0 /* this */
            getfield com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState.paths:Ljava/util/Set;
            areturn
        end local 0 // com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/xml/internal/ws/transport/http/server/ServerMgr$ServerState;
    Signature: ()Ljava/util/Set<Ljava/lang/String;>;
}
SourceFile: "ServerMgr.java"
NestHost: com.sun.xml.internal.ws.transport.http.server.ServerMgr
InnerClasses:
  private final ServerState = com.sun.xml.internal.ws.transport.http.server.ServerMgr$ServerState of com.sun.xml.internal.ws.transport.http.server.ServerMgr