public class io.undertow.server.handlers.PathHandler implements io.undertow.server.HttpHandler
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.undertow.server.handlers.PathHandler
  super_class: java.lang.Object
{
  private final io.undertow.util.PathMatcher<io.undertow.server.HttpHandler> pathMatcher;
    descriptor: Lio/undertow/util/PathMatcher;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lio/undertow/util/PathMatcher<Lio/undertow/server/HttpHandler;>;

  private final io.undertow.server.handlers.cache.LRUCache<java.lang.String, io.undertow.util.PathMatcher$PathMatch<io.undertow.server.HttpHandler>> cache;
    descriptor: Lio/undertow/server/handlers/cache/LRUCache;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lio/undertow/server/handlers/cache/LRUCache<Ljava/lang/String;Lio/undertow/util/PathMatcher$PathMatch<Lio/undertow/server/HttpHandler;>;>;

  public void <init>(io.undertow.server.HttpHandler);
    descriptor: (Lio/undertow/server/HttpHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.PathHandler this
        start local 1 // io.undertow.server.HttpHandler defaultHandler
         0: .line 44
            aload 0 /* this */
            iconst_0
            invokespecial io.undertow.server.handlers.PathHandler.<init>:(I)V
         1: .line 45
            aload 0 /* this */
            getfield io.undertow.server.handlers.PathHandler.pathMatcher:Lio/undertow/util/PathMatcher;
            ldc "/"
            aload 1 /* defaultHandler */
            invokevirtual io.undertow.util.PathMatcher.addPrefixPath:(Ljava/lang/String;Ljava/lang/Object;)Lio/undertow/util/PathMatcher;
            pop
         2: .line 46
            return
        end local 1 // io.undertow.server.HttpHandler defaultHandler
        end local 0 // io.undertow.server.handlers.PathHandler this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lio/undertow/server/handlers/PathHandler;
            0    3     1  defaultHandler  Lio/undertow/server/HttpHandler;
    MethodParameters:
                Name  Flags
      defaultHandler  final

  public void <init>(io.undertow.server.HttpHandler, int);
    descriptor: (Lio/undertow/server/HttpHandler;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.undertow.server.handlers.PathHandler this
        start local 1 // io.undertow.server.HttpHandler defaultHandler
        start local 2 // int cacheSize
         0: .line 49
            aload 0 /* this */
            iload 2 /* cacheSize */
            invokespecial io.undertow.server.handlers.PathHandler.<init>:(I)V
         1: .line 50
            aload 0 /* this */
            getfield io.undertow.server.handlers.PathHandler.pathMatcher:Lio/undertow/util/PathMatcher;
            ldc "/"
            aload 1 /* defaultHandler */
            invokevirtual io.undertow.util.PathMatcher.addPrefixPath:(Ljava/lang/String;Ljava/lang/Object;)Lio/undertow/util/PathMatcher;
            pop
         2: .line 51
            return
        end local 2 // int cacheSize
        end local 1 // io.undertow.server.HttpHandler defaultHandler
        end local 0 // io.undertow.server.handlers.PathHandler this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lio/undertow/server/handlers/PathHandler;
            0    3     1  defaultHandler  Lio/undertow/server/HttpHandler;
            0    3     2       cacheSize  I
    MethodParameters:
                Name  Flags
      defaultHandler  final
      cacheSize       

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.undertow.server.handlers.PathHandler this
         0: .line 54
            aload 0 /* this */
            iconst_0
            invokespecial io.undertow.server.handlers.PathHandler.<init>:(I)V
         1: .line 55
            return
        end local 0 // io.undertow.server.handlers.PathHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/undertow/server/handlers/PathHandler;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.PathHandler this
        start local 1 // int cacheSize
         0: .line 57
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 39
            aload 0 /* this */
            new io.undertow.util.PathMatcher
            dup
            invokespecial io.undertow.util.PathMatcher.<init>:()V
            putfield io.undertow.server.handlers.PathHandler.pathMatcher:Lio/undertow/util/PathMatcher;
         2: .line 58
            iload 1 /* cacheSize */
            ifle 5
         3: .line 59
            aload 0 /* this */
            new io.undertow.server.handlers.cache.LRUCache
            dup
            iload 1 /* cacheSize */
            iconst_m1
            iconst_1
            invokespecial io.undertow.server.handlers.cache.LRUCache.<init>:(IIZ)V
            putfield io.undertow.server.handlers.PathHandler.cache:Lio/undertow/server/handlers/cache/LRUCache;
         4: .line 60
            goto 6
         5: .line 61
      StackMap locals: io.undertow.server.handlers.PathHandler int
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield io.undertow.server.handlers.PathHandler.cache:Lio/undertow/server/handlers/cache/LRUCache;
         6: .line 63
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int cacheSize
        end local 0 // io.undertow.server.handlers.PathHandler this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lio/undertow/server/handlers/PathHandler;
            0    7     1  cacheSize  I
    MethodParameters:
           Name  Flags
      cacheSize  

  public void handleRequest(io.undertow.server.HttpServerExchange);
    descriptor: (Lio/undertow/server/HttpServerExchange;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // io.undertow.server.handlers.PathHandler this
        start local 1 // io.undertow.server.HttpServerExchange exchange
         0: .line 67
            aconst_null
            astore 2 /* match */
        start local 2 // io.undertow.util.PathMatcher$PathMatch match
         1: .line 68
            iconst_0
            istore 3 /* hit */
        start local 3 // boolean hit
         2: .line 69
            aload 0 /* this */
            getfield io.undertow.server.handlers.PathHandler.cache:Lio/undertow/server/handlers/cache/LRUCache;
            ifnull 5
         3: .line 70
            aload 0 /* this */
            getfield io.undertow.server.handlers.PathHandler.cache:Lio/undertow/server/handlers/cache/LRUCache;
            aload 1 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRelativePath:()Ljava/lang/String;
            invokevirtual io.undertow.server.handlers.cache.LRUCache.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.undertow.util.PathMatcher$PathMatch
            astore 2 /* match */
         4: .line 71
            iconst_1
            istore 3 /* hit */
         5: .line 73
      StackMap locals: io.undertow.util.PathMatcher$PathMatch int
      StackMap stack:
            aload 2 /* match */
            ifnonnull 7
         6: .line 74
            aload 0 /* this */
            getfield io.undertow.server.handlers.PathHandler.pathMatcher:Lio/undertow/util/PathMatcher;
            aload 1 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRelativePath:()Ljava/lang/String;
            invokevirtual io.undertow.util.PathMatcher.match:(Ljava/lang/String;)Lio/undertow/util/PathMatcher$PathMatch;
            astore 2 /* match */
         7: .line 76
      StackMap locals:
      StackMap stack:
            aload 2 /* match */
            invokevirtual io.undertow.util.PathMatcher$PathMatch.getValue:()Ljava/lang/Object;
            ifnonnull 10
         8: .line 77
            getstatic io.undertow.server.handlers.ResponseCodeHandler.HANDLE_404:Lio/undertow/server/handlers/ResponseCodeHandler;
            aload 1 /* exchange */
            invokevirtual io.undertow.server.handlers.ResponseCodeHandler.handleRequest:(Lio/undertow/server/HttpServerExchange;)V
         9: .line 78
            return
        10: .line 80
      StackMap locals:
      StackMap stack:
            iload 3 /* hit */
            ifeq 12
        11: .line 81
            aload 0 /* this */
            getfield io.undertow.server.handlers.PathHandler.cache:Lio/undertow/server/handlers/cache/LRUCache;
            aload 1 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRelativePath:()Ljava/lang/String;
            aload 2 /* match */
            invokevirtual io.undertow.server.handlers.cache.LRUCache.add:(Ljava/lang/Object;Ljava/lang/Object;)V
        12: .line 83
      StackMap locals:
      StackMap stack:
            aload 1 /* exchange */
            aload 2 /* match */
            invokevirtual io.undertow.util.PathMatcher$PathMatch.getRemaining:()Ljava/lang/String;
            invokevirtual io.undertow.server.HttpServerExchange.setRelativePath:(Ljava/lang/String;)Lio/undertow/server/HttpServerExchange;
            pop
        13: .line 84
            aload 1 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getResolvedPath:()Ljava/lang/String;
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 16
        14: .line 86
            aload 1 /* exchange */
            aload 2 /* match */
            invokevirtual io.undertow.util.PathMatcher$PathMatch.getMatched:()Ljava/lang/String;
            invokevirtual io.undertow.server.HttpServerExchange.setResolvedPath:(Ljava/lang/String;)Lio/undertow/server/HttpServerExchange;
            pop
        15: .line 87
            goto 20
        16: .line 89
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            aload 1 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getResolvedPath:()Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            aload 2 /* match */
            invokevirtual io.undertow.util.PathMatcher$PathMatch.getMatched:()Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            iadd
            invokespecial java.lang.StringBuilder.<init>:(I)V
            astore 4 /* sb */
        start local 4 // java.lang.StringBuilder sb
        17: .line 90
            aload 4 /* sb */
            aload 1 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getResolvedPath:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        18: .line 91
            aload 4 /* sb */
            aload 2 /* match */
            invokevirtual io.undertow.util.PathMatcher$PathMatch.getMatched:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        19: .line 92
            aload 1 /* exchange */
            aload 4 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.undertow.server.HttpServerExchange.setResolvedPath:(Ljava/lang/String;)Lio/undertow/server/HttpServerExchange;
            pop
        end local 4 // java.lang.StringBuilder sb
        20: .line 94
      StackMap locals:
      StackMap stack:
            aload 2 /* match */
            invokevirtual io.undertow.util.PathMatcher$PathMatch.getValue:()Ljava/lang/Object;
            checkcast io.undertow.server.HttpHandler
            aload 1 /* exchange */
            invokeinterface io.undertow.server.HttpHandler.handleRequest:(Lio/undertow/server/HttpServerExchange;)V
        21: .line 95
            return
        end local 3 // boolean hit
        end local 2 // io.undertow.util.PathMatcher$PathMatch match
        end local 1 // io.undertow.server.HttpServerExchange exchange
        end local 0 // io.undertow.server.handlers.PathHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   22     0      this  Lio/undertow/server/handlers/PathHandler;
            0   22     1  exchange  Lio/undertow/server/HttpServerExchange;
            1   22     2     match  Lio/undertow/util/PathMatcher$PathMatch<Lio/undertow/server/HttpHandler;>;
            2   22     3       hit  Z
           17   20     4        sb  Ljava/lang/StringBuilder;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
          Name  Flags
      exchange  

  public synchronized io.undertow.server.handlers.PathHandler addPath(java.lang.String, io.undertow.server.HttpHandler);
    descriptor: (Ljava/lang/String;Lio/undertow/server/HttpHandler;)Lio/undertow/server/handlers/PathHandler;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.undertow.server.handlers.PathHandler this
        start local 1 // java.lang.String path
        start local 2 // io.undertow.server.HttpHandler handler
         0: .line 113
            aload 0 /* this */
            aload 1 /* path */
            aload 2 /* handler */
            invokevirtual io.undertow.server.handlers.PathHandler.addPrefixPath:(Ljava/lang/String;Lio/undertow/server/HttpHandler;)Lio/undertow/server/handlers/PathHandler;
            areturn
        end local 2 // io.undertow.server.HttpHandler handler
        end local 1 // java.lang.String path
        end local 0 // io.undertow.server.handlers.PathHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/undertow/server/handlers/PathHandler;
            0    1     1     path  Ljava/lang/String;
            0    1     2  handler  Lio/undertow/server/HttpHandler;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      path     final
      handler  final

  public synchronized io.undertow.server.handlers.PathHandler addPrefixPath(java.lang.String, io.undertow.server.HttpHandler);
    descriptor: (Ljava/lang/String;Lio/undertow/server/HttpHandler;)Lio/undertow/server/handlers/PathHandler;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.undertow.server.handlers.PathHandler this
        start local 1 // java.lang.String path
        start local 2 // io.undertow.server.HttpHandler handler
         0: .line 131
            aload 2 /* handler */
            invokestatic io.undertow.Handlers.handlerNotNull:(Lio/undertow/server/HttpHandler;)V
         1: .line 132
            aload 0 /* this */
            getfield io.undertow.server.handlers.PathHandler.pathMatcher:Lio/undertow/util/PathMatcher;
            aload 1 /* path */
            aload 2 /* handler */
            invokevirtual io.undertow.util.PathMatcher.addPrefixPath:(Ljava/lang/String;Ljava/lang/Object;)Lio/undertow/util/PathMatcher;
            pop
         2: .line 133
            aload 0 /* this */
            areturn
        end local 2 // io.undertow.server.HttpHandler handler
        end local 1 // java.lang.String path
        end local 0 // io.undertow.server.handlers.PathHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/undertow/server/handlers/PathHandler;
            0    3     1     path  Ljava/lang/String;
            0    3     2  handler  Lio/undertow/server/HttpHandler;
    MethodParameters:
         Name  Flags
      path     final
      handler  final

  public synchronized io.undertow.server.handlers.PathHandler addExactPath(java.lang.String, io.undertow.server.HttpHandler);
    descriptor: (Ljava/lang/String;Lio/undertow/server/HttpHandler;)Lio/undertow/server/handlers/PathHandler;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.undertow.server.handlers.PathHandler this
        start local 1 // java.lang.String path
        start local 2 // io.undertow.server.HttpHandler handler
         0: .line 146
            aload 2 /* handler */
            invokestatic io.undertow.Handlers.handlerNotNull:(Lio/undertow/server/HttpHandler;)V
         1: .line 147
            aload 0 /* this */
            getfield io.undertow.server.handlers.PathHandler.pathMatcher:Lio/undertow/util/PathMatcher;
            aload 1 /* path */
            aload 2 /* handler */
            invokevirtual io.undertow.util.PathMatcher.addExactPath:(Ljava/lang/String;Ljava/lang/Object;)Lio/undertow/util/PathMatcher;
            pop
         2: .line 148
            aload 0 /* this */
            areturn
        end local 2 // io.undertow.server.HttpHandler handler
        end local 1 // java.lang.String path
        end local 0 // io.undertow.server.handlers.PathHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/undertow/server/handlers/PathHandler;
            0    3     1     path  Ljava/lang/String;
            0    3     2  handler  Lio/undertow/server/HttpHandler;
    MethodParameters:
         Name  Flags
      path     final
      handler  final

  public synchronized io.undertow.server.handlers.PathHandler removePath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/undertow/server/handlers/PathHandler;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.PathHandler this
        start local 1 // java.lang.String path
         0: .line 153
            aload 0 /* this */
            aload 1 /* path */
            invokevirtual io.undertow.server.handlers.PathHandler.removePrefixPath:(Ljava/lang/String;)Lio/undertow/server/handlers/PathHandler;
            areturn
        end local 1 // java.lang.String path
        end local 0 // io.undertow.server.handlers.PathHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/handlers/PathHandler;
            0    1     1  path  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      path  final

  public synchronized io.undertow.server.handlers.PathHandler removePrefixPath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/undertow/server/handlers/PathHandler;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.PathHandler this
        start local 1 // java.lang.String path
         0: .line 157
            aload 0 /* this */
            getfield io.undertow.server.handlers.PathHandler.pathMatcher:Lio/undertow/util/PathMatcher;
            aload 1 /* path */
            invokevirtual io.undertow.util.PathMatcher.removePrefixPath:(Ljava/lang/String;)Lio/undertow/util/PathMatcher;
            pop
         1: .line 158
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String path
        end local 0 // io.undertow.server.handlers.PathHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/undertow/server/handlers/PathHandler;
            0    2     1  path  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  final

  public synchronized io.undertow.server.handlers.PathHandler removeExactPath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/undertow/server/handlers/PathHandler;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.handlers.PathHandler this
        start local 1 // java.lang.String path
         0: .line 162
            aload 0 /* this */
            getfield io.undertow.server.handlers.PathHandler.pathMatcher:Lio/undertow/util/PathMatcher;
            aload 1 /* path */
            invokevirtual io.undertow.util.PathMatcher.removeExactPath:(Ljava/lang/String;)Lio/undertow/util/PathMatcher;
            pop
         1: .line 163
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String path
        end local 0 // io.undertow.server.handlers.PathHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/undertow/server/handlers/PathHandler;
            0    2     1  path  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  final

  public synchronized io.undertow.server.handlers.PathHandler clearPaths();
    descriptor: ()Lio/undertow/server/handlers/PathHandler;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.handlers.PathHandler this
         0: .line 167
            aload 0 /* this */
            getfield io.undertow.server.handlers.PathHandler.pathMatcher:Lio/undertow/util/PathMatcher;
            invokevirtual io.undertow.util.PathMatcher.clearPaths:()Lio/undertow/util/PathMatcher;
            pop
         1: .line 168
            aload 0 /* this */
            areturn
        end local 0 // io.undertow.server.handlers.PathHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/undertow/server/handlers/PathHandler;
}
SourceFile: "PathHandler.java"
InnerClasses:
  public final PathMatch = io.undertow.util.PathMatcher$PathMatch of io.undertow.util.PathMatcher