public class io.vertx.ext.web.impl.RouteImpl implements io.vertx.ext.web.Route
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.web.impl.RouteImpl
  super_class: java.lang.Object
{
  private static final io.vertx.core.logging.Logger log;
    descriptor: Lio/vertx/core/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

  private final java.util.Set<io.vertx.core.http.HttpMethod> methods;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Lio/vertx/core/http/HttpMethod;>;

  private final java.util.Set<io.vertx.ext.web.MIMEHeader> consumes;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Lio/vertx/ext/web/MIMEHeader;>;

  private boolean emptyBodyPermittedWithConsumes;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private final java.util.Set<io.vertx.ext.web.MIMEHeader> produces;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Lio/vertx/ext/web/MIMEHeader;>;

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

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

  private boolean enabled;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private java.util.List<io.vertx.core.Handler<io.vertx.ext.web.RoutingContext>> contextHandlers;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;>;

  private java.util.List<io.vertx.core.Handler<io.vertx.ext.web.RoutingContext>> failureHandlers;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;>;

  private boolean added;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private java.util.regex.Pattern pattern;
    descriptor: Ljava/util/regex/Pattern;
    flags: (0x0002) ACC_PRIVATE

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

  private boolean useNormalisedPath;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

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

  private static final java.util.regex.Pattern RE_OPERATORS_NO_STAR;
    descriptor: Ljava/util/regex/Pattern;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.util.regex.Pattern RE_TOKEN_SEARCH;
    descriptor: Ljava/util/regex/Pattern;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private boolean exactPath;
    descriptor: Z
    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 Lio/vertx/ext/web/impl/RouteImpl;
            invokestatic io.vertx.core.logging.LoggerFactory.getLogger:(Ljava/lang/Class;)Lio/vertx/core/logging/Logger;
            putstatic io.vertx.ext.web.impl.RouteImpl.log:Lio/vertx/core/logging/Logger;
         1: .line 429
            ldc "([\\(\\)\\$\\+\\.])"
            invokestatic java.util.regex.Pattern.compile:(Ljava/lang/String;)Ljava/util/regex/Pattern;
            putstatic io.vertx.ext.web.impl.RouteImpl.RE_OPERATORS_NO_STAR:Ljava/util/regex/Pattern;
         2: .line 432
            ldc ":([A-Za-z][A-Za-z0-9_]*)"
            invokestatic java.util.regex.Pattern.compile:(Ljava/lang/String;)Ljava/util/regex/Pattern;
            putstatic io.vertx.ext.web.impl.RouteImpl.RE_TOKEN_SEARCH:Ljava/util/regex/Pattern;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(io.vertx.ext.web.impl.RouterImpl, int);
    descriptor: (Lio/vertx/ext/web/impl/RouterImpl;I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // io.vertx.ext.web.impl.RouterImpl router
        start local 2 // int order
         0: .line 61
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 46
            aload 0 /* this */
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            putfield io.vertx.ext.web.impl.RouteImpl.methods:Ljava/util/Set;
         2: .line 47
            aload 0 /* this */
            new java.util.LinkedHashSet
            dup
            invokespecial java.util.LinkedHashSet.<init>:()V
            putfield io.vertx.ext.web.impl.RouteImpl.consumes:Ljava/util/Set;
         3: .line 48
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.web.impl.RouteImpl.emptyBodyPermittedWithConsumes:Z
         4: .line 49
            aload 0 /* this */
            new java.util.LinkedHashSet
            dup
            invokespecial java.util.LinkedHashSet.<init>:()V
            putfield io.vertx.ext.web.impl.RouteImpl.produces:Ljava/util/Set;
         5: .line 52
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.web.impl.RouteImpl.enabled:Z
         6: .line 58
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.web.impl.RouteImpl.useNormalisedPath:Z
         7: .line 59
            aload 0 /* this */
            new java.util.TreeSet
            dup
            invokespecial java.util.TreeSet.<init>:()V
            putfield io.vertx.ext.web.impl.RouteImpl.namedGroupsInRegex:Ljava/util/Set;
         8: .line 62
            aload 0 /* this */
            aload 1 /* router */
            putfield io.vertx.ext.web.impl.RouteImpl.router:Lio/vertx/ext/web/impl/RouterImpl;
         9: .line 63
            aload 0 /* this */
            iload 2 /* order */
            putfield io.vertx.ext.web.impl.RouteImpl.order:I
        10: .line 64
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield io.vertx.ext.web.impl.RouteImpl.contextHandlers:Ljava/util/List;
        11: .line 65
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield io.vertx.ext.web.impl.RouteImpl.failureHandlers:Ljava/util/List;
        12: .line 66
            return
        end local 2 // int order
        end local 1 // io.vertx.ext.web.impl.RouterImpl router
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lio/vertx/ext/web/impl/RouteImpl;
            0   13     1  router  Lio/vertx/ext/web/impl/RouterImpl;
            0   13     2   order  I
    MethodParameters:
        Name  Flags
      router  
      order   

  void <init>(io.vertx.ext.web.impl.RouterImpl, int, io.vertx.core.http.HttpMethod, java.lang.String);
    descriptor: (Lio/vertx/ext/web/impl/RouterImpl;ILio/vertx/core/http/HttpMethod;Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // io.vertx.ext.web.impl.RouterImpl router
        start local 2 // int order
        start local 3 // io.vertx.core.http.HttpMethod method
        start local 4 // java.lang.String path
         0: .line 69
            aload 0 /* this */
            aload 1 /* router */
            iload 2 /* order */
            invokespecial io.vertx.ext.web.impl.RouteImpl.<init>:(Lio/vertx/ext/web/impl/RouterImpl;I)V
         1: .line 70
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.methods:Ljava/util/Set;
            aload 3 /* method */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         2: .line 71
            aload 0 /* this */
            aload 4 /* path */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.checkPath:(Ljava/lang/String;)V
         3: .line 72
            aload 0 /* this */
            aload 4 /* path */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.setPath:(Ljava/lang/String;)V
         4: .line 73
            return
        end local 4 // java.lang.String path
        end local 3 // io.vertx.core.http.HttpMethod method
        end local 2 // int order
        end local 1 // io.vertx.ext.web.impl.RouterImpl router
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lio/vertx/ext/web/impl/RouteImpl;
            0    5     1  router  Lio/vertx/ext/web/impl/RouterImpl;
            0    5     2   order  I
            0    5     3  method  Lio/vertx/core/http/HttpMethod;
            0    5     4    path  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      router  
      order   
      method  
      path    

  void <init>(io.vertx.ext.web.impl.RouterImpl, int, java.lang.String);
    descriptor: (Lio/vertx/ext/web/impl/RouterImpl;ILjava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // io.vertx.ext.web.impl.RouterImpl router
        start local 2 // int order
        start local 3 // java.lang.String path
         0: .line 76
            aload 0 /* this */
            aload 1 /* router */
            iload 2 /* order */
            invokespecial io.vertx.ext.web.impl.RouteImpl.<init>:(Lio/vertx/ext/web/impl/RouterImpl;I)V
         1: .line 77
            aload 0 /* this */
            aload 3 /* path */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.checkPath:(Ljava/lang/String;)V
         2: .line 78
            aload 0 /* this */
            aload 3 /* path */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.setPath:(Ljava/lang/String;)V
         3: .line 79
            return
        end local 3 // java.lang.String path
        end local 2 // int order
        end local 1 // io.vertx.ext.web.impl.RouterImpl router
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/vertx/ext/web/impl/RouteImpl;
            0    4     1  router  Lio/vertx/ext/web/impl/RouterImpl;
            0    4     2   order  I
            0    4     3    path  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      router  
      order   
      path    

  void <init>(io.vertx.ext.web.impl.RouterImpl, int, io.vertx.core.http.HttpMethod, java.lang.String, boolean);
    descriptor: (Lio/vertx/ext/web/impl/RouterImpl;ILio/vertx/core/http/HttpMethod;Ljava/lang/String;Z)V
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=6
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // io.vertx.ext.web.impl.RouterImpl router
        start local 2 // int order
        start local 3 // io.vertx.core.http.HttpMethod method
        start local 4 // java.lang.String regex
        start local 5 // boolean bregex
         0: .line 82
            aload 0 /* this */
            aload 1 /* router */
            iload 2 /* order */
            invokespecial io.vertx.ext.web.impl.RouteImpl.<init>:(Lio/vertx/ext/web/impl/RouterImpl;I)V
         1: .line 83
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.methods:Ljava/util/Set;
            aload 3 /* method */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         2: .line 84
            aload 0 /* this */
            aload 4 /* regex */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.setRegex:(Ljava/lang/String;)V
         3: .line 85
            return
        end local 5 // boolean bregex
        end local 4 // java.lang.String regex
        end local 3 // io.vertx.core.http.HttpMethod method
        end local 2 // int order
        end local 1 // io.vertx.ext.web.impl.RouterImpl router
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/vertx/ext/web/impl/RouteImpl;
            0    4     1  router  Lio/vertx/ext/web/impl/RouterImpl;
            0    4     2   order  I
            0    4     3  method  Lio/vertx/core/http/HttpMethod;
            0    4     4   regex  Ljava/lang/String;
            0    4     5  bregex  Z
    MethodParameters:
        Name  Flags
      router  
      order   
      method  
      regex   
      bregex  

  void <init>(io.vertx.ext.web.impl.RouterImpl, int, java.lang.String, boolean);
    descriptor: (Lio/vertx/ext/web/impl/RouterImpl;ILjava/lang/String;Z)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // io.vertx.ext.web.impl.RouterImpl router
        start local 2 // int order
        start local 3 // java.lang.String regex
        start local 4 // boolean bregex
         0: .line 88
            aload 0 /* this */
            aload 1 /* router */
            iload 2 /* order */
            invokespecial io.vertx.ext.web.impl.RouteImpl.<init>:(Lio/vertx/ext/web/impl/RouterImpl;I)V
         1: .line 89
            aload 0 /* this */
            aload 3 /* regex */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.setRegex:(Ljava/lang/String;)V
         2: .line 90
            return
        end local 4 // boolean bregex
        end local 3 // java.lang.String regex
        end local 2 // int order
        end local 1 // io.vertx.ext.web.impl.RouterImpl router
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/ext/web/impl/RouteImpl;
            0    3     1  router  Lio/vertx/ext/web/impl/RouterImpl;
            0    3     2   order  I
            0    3     3   regex  Ljava/lang/String;
            0    3     4  bregex  Z
    MethodParameters:
        Name  Flags
      router  
      order   
      regex   
      bregex  

  public synchronized io.vertx.ext.web.Route method(io.vertx.core.http.HttpMethod);
    descriptor: (Lio/vertx/core/http/HttpMethod;)Lio/vertx/ext/web/Route;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // io.vertx.core.http.HttpMethod method
         0: .line 94
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.methods:Ljava/util/Set;
            aload 1 /* method */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         1: .line 95
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.http.HttpMethod method
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/ext/web/impl/RouteImpl;
            0    2     1  method  Lio/vertx/core/http/HttpMethod;
    MethodParameters:
        Name  Flags
      method  

  public synchronized io.vertx.ext.web.Route path(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/Route;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // java.lang.String path
         0: .line 100
            aload 0 /* this */
            aload 1 /* path */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.checkPath:(Ljava/lang/String;)V
         1: .line 101
            aload 0 /* this */
            aload 1 /* path */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.setPath:(Ljava/lang/String;)V
         2: .line 102
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String path
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/web/impl/RouteImpl;
            0    3     1  path  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  

  public synchronized io.vertx.ext.web.Route pathRegex(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/Route;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // java.lang.String regex
         0: .line 107
            aload 0 /* this */
            aload 1 /* regex */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.setRegex:(Ljava/lang/String;)V
         1: .line 108
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String regex
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/ext/web/impl/RouteImpl;
            0    2     1  regex  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      regex  

  public synchronized io.vertx.ext.web.Route produces(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/Route;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // java.lang.String contentType
         0: .line 113
            new io.vertx.ext.web.impl.ParsableMIMEValue
            dup
            aload 1 /* contentType */
            invokespecial io.vertx.ext.web.impl.ParsableMIMEValue.<init>:(Ljava/lang/String;)V
            invokevirtual io.vertx.ext.web.impl.ParsableMIMEValue.forceParse:()Lio/vertx/ext/web/impl/ParsableMIMEValue;
            astore 2 /* value */
        start local 2 // io.vertx.ext.web.impl.ParsableMIMEValue value
         1: .line 114
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.produces:Ljava/util/Set;
            aload 2 /* value */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         2: .line 115
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.ext.web.impl.ParsableMIMEValue value
        end local 1 // java.lang.String contentType
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lio/vertx/ext/web/impl/RouteImpl;
            0    3     1  contentType  Ljava/lang/String;
            1    3     2        value  Lio/vertx/ext/web/impl/ParsableMIMEValue;
    MethodParameters:
             Name  Flags
      contentType  

  public synchronized io.vertx.ext.web.Route consumes(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/Route;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // java.lang.String contentType
         0: .line 120
            new io.vertx.ext.web.impl.ParsableMIMEValue
            dup
            aload 1 /* contentType */
            invokespecial io.vertx.ext.web.impl.ParsableMIMEValue.<init>:(Ljava/lang/String;)V
            invokevirtual io.vertx.ext.web.impl.ParsableMIMEValue.forceParse:()Lio/vertx/ext/web/impl/ParsableMIMEValue;
            astore 2 /* value */
        start local 2 // io.vertx.ext.web.impl.ParsableMIMEValue value
         1: .line 121
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.consumes:Ljava/util/Set;
            aload 2 /* value */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         2: .line 122
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.ext.web.impl.ParsableMIMEValue value
        end local 1 // java.lang.String contentType
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lio/vertx/ext/web/impl/RouteImpl;
            0    3     1  contentType  Ljava/lang/String;
            1    3     2        value  Lio/vertx/ext/web/impl/ParsableMIMEValue;
    MethodParameters:
             Name  Flags
      contentType  

  public synchronized io.vertx.ext.web.Route order(int);
    descriptor: (I)Lio/vertx/ext/web/Route;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // int order
         0: .line 127
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.added:Z
            ifeq 2
         1: .line 128
            new java.lang.IllegalStateException
            dup
            ldc "Can't change order after route is active"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 130
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* order */
            putfield io.vertx.ext.web.impl.RouteImpl.order:I
         3: .line 131
            aload 0 /* this */
            areturn
        end local 1 // int order
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lio/vertx/ext/web/impl/RouteImpl;
            0    4     1  order  I
    MethodParameters:
       Name  Flags
      order  

  public synchronized io.vertx.ext.web.Route last();
    descriptor: ()Lio/vertx/ext/web/Route;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
         0: .line 136
            aload 0 /* this */
            ldc 2147483647
            invokevirtual io.vertx.ext.web.impl.RouteImpl.order:(I)Lio/vertx/ext/web/Route;
            areturn
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RouteImpl;

  public synchronized io.vertx.ext.web.Route handler(io.vertx.core.Handler<io.vertx.ext.web.RoutingContext>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // io.vertx.core.Handler contextHandler
         0: .line 141
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.contextHandlers:Ljava/util/List;
            aload 1 /* contextHandler */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 142
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.checkAdd:()V
         2: .line 143
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler contextHandler
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lio/vertx/ext/web/impl/RouteImpl;
            0    3     1  contextHandler  Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;)Lio/vertx/ext/web/Route;
    MethodParameters:
                Name  Flags
      contextHandler  

  public io.vertx.ext.web.Route blockingHandler(io.vertx.core.Handler<io.vertx.ext.web.RoutingContext>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // io.vertx.core.Handler contextHandler
         0: .line 148
            aload 0 /* this */
            aload 1 /* contextHandler */
            iconst_1
            invokevirtual io.vertx.ext.web.impl.RouteImpl.blockingHandler:(Lio/vertx/core/Handler;Z)Lio/vertx/ext/web/Route;
            areturn
        end local 1 // io.vertx.core.Handler contextHandler
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lio/vertx/ext/web/impl/RouteImpl;
            0    1     1  contextHandler  Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;)Lio/vertx/ext/web/Route;
    MethodParameters:
                Name  Flags
      contextHandler  

  public synchronized io.vertx.ext.web.Route blockingHandler(io.vertx.core.Handler<io.vertx.ext.web.RoutingContext>, boolean);
    descriptor: (Lio/vertx/core/Handler;Z)Lio/vertx/ext/web/Route;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // io.vertx.core.Handler contextHandler
        start local 2 // boolean ordered
         0: .line 153
            aload 0 /* this */
            new io.vertx.ext.web.impl.BlockingHandlerDecorator
            dup
            aload 1 /* contextHandler */
            iload 2 /* ordered */
            invokespecial io.vertx.ext.web.impl.BlockingHandlerDecorator.<init>:(Lio/vertx/core/Handler;Z)V
            invokevirtual io.vertx.ext.web.impl.RouteImpl.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
            areturn
        end local 2 // boolean ordered
        end local 1 // io.vertx.core.Handler contextHandler
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lio/vertx/ext/web/impl/RouteImpl;
            0    1     1  contextHandler  Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;
            0    1     2         ordered  Z
    Signature: (Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;Z)Lio/vertx/ext/web/Route;
    MethodParameters:
                Name  Flags
      contextHandler  
      ordered         

  public synchronized io.vertx.ext.web.Route failureHandler(io.vertx.core.Handler<io.vertx.ext.web.RoutingContext>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // io.vertx.core.Handler exceptionHandler
         0: .line 158
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.failureHandlers:Ljava/util/List;
            aload 1 /* exceptionHandler */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 159
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.checkAdd:()V
         2: .line 160
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler exceptionHandler
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    3     0              this  Lio/vertx/ext/web/impl/RouteImpl;
            0    3     1  exceptionHandler  Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;)Lio/vertx/ext/web/Route;
    MethodParameters:
                  Name  Flags
      exceptionHandler  

  public synchronized io.vertx.ext.web.Route remove();
    descriptor: ()Lio/vertx/ext/web/Route;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
         0: .line 165
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.router:Lio/vertx/ext/web/impl/RouterImpl;
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.impl.RouterImpl.remove:(Lio/vertx/ext/web/impl/RouteImpl;)V
         1: .line 166
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/web/impl/RouteImpl;

  public synchronized io.vertx.ext.web.Route disable();
    descriptor: ()Lio/vertx/ext/web/Route;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
         0: .line 171
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.web.impl.RouteImpl.enabled:Z
         1: .line 172
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/web/impl/RouteImpl;

  public synchronized io.vertx.ext.web.Route enable();
    descriptor: ()Lio/vertx/ext/web/Route;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
         0: .line 177
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.web.impl.RouteImpl.enabled:Z
         1: .line 178
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/web/impl/RouteImpl;

  public io.vertx.ext.web.Route useNormalisedPath(boolean);
    descriptor: (Z)Lio/vertx/ext/web/Route;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // boolean useNormalisedPath
         0: .line 183
            aload 0 /* this */
            iload 1 /* useNormalisedPath */
            putfield io.vertx.ext.web.impl.RouteImpl.useNormalisedPath:Z
         1: .line 184
            aload 0 /* this */
            areturn
        end local 1 // boolean useNormalisedPath
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lio/vertx/ext/web/impl/RouteImpl;
            0    2     1  useNormalisedPath  Z
    MethodParameters:
                   Name  Flags
      useNormalisedPath  

  public java.lang.String getPath();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
         0: .line 189
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.path:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RouteImpl;

  public java.util.Set<io.vertx.core.http.HttpMethod> methods();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
         0: .line 194
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.methods:Ljava/util/Set;
            areturn
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RouteImpl;
    Signature: ()Ljava/util/Set<Lio/vertx/core/http/HttpMethod;>;

  public io.vertx.ext.web.Route setRegexGroupsNames(java.util.List<java.lang.String>);
    descriptor: (Ljava/util/List;)Lio/vertx/ext/web/Route;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // java.util.List groups
         0: .line 199
            aload 0 /* this */
            aload 1 /* groups */
            putfield io.vertx.ext.web.impl.RouteImpl.groups:Ljava/util/List;
         1: .line 200
            aload 0 /* this */
            areturn
        end local 1 // java.util.List groups
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/ext/web/impl/RouteImpl;
            0    2     1  groups  Ljava/util/List<Ljava/lang/String;>;
    Signature: (Ljava/util/List<Ljava/lang/String;>;)Lio/vertx/ext/web/Route;
    MethodParameters:
        Name  Flags
      groups  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
         0: .line 205
            new java.lang.StringBuilder
            dup
            ldc "Route[ "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 206
            aload 1 /* sb */
            ldc "path:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.path:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 207
            aload 1 /* sb */
            ldc " pattern:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.pattern:Ljava/util/regex/Pattern;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
         3: .line 208
            aload 1 /* sb */
            ldc " handlers:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.contextHandlers:Ljava/util/List;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
         4: .line 209
            aload 1 /* sb */
            ldc " failureHandlers:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.failureHandlers:Ljava/util/List;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
         5: .line 210
            aload 1 /* sb */
            ldc " order:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.order:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         6: .line 211
            aload 1 /* sb */
            ldc " methods:["
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         7: .line 212
            iconst_0
            istore 2 /* cnt */
        start local 2 // int cnt
         8: .line 213
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.methods:Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 4
            goto 14
      StackMap locals: io.vertx.ext.web.impl.RouteImpl java.lang.StringBuilder int top java.util.Iterator
      StackMap stack:
         9: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.core.http.HttpMethod
            astore 3 /* method */
        start local 3 // io.vertx.core.http.HttpMethod method
        10: .line 214
            aload 1 /* sb */
            aload 3 /* method */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
        11: .line 215
            iinc 2 /* cnt */ 1
        12: .line 216
            iload 2 /* cnt */
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.methods:Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            if_icmpge 14
        13: .line 217
            aload 1 /* sb */
            ldc ","
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 3 // io.vertx.core.http.HttpMethod method
        14: .line 213
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 9
        15: .line 220
            aload 1 /* sb */
            ldc "]]@"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        16: .line 221
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 2 // int cnt
        end local 1 // java.lang.StringBuilder sb
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     0    this  Lio/vertx/ext/web/impl/RouteImpl;
            1   17     1      sb  Ljava/lang/StringBuilder;
            8   17     2     cnt  I
           10   14     3  method  Lio/vertx/core/http/HttpMethod;

  void handleContext(io.vertx.ext.web.impl.RoutingContextImplBase);
    descriptor: (Lio/vertx/ext/web/impl/RoutingContextImplBase;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // io.vertx.ext.web.impl.RoutingContextImplBase context
         0: .line 227
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         1: .line 228
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.contextHandlers:Ljava/util/List;
            aload 1 /* context */
            invokevirtual io.vertx.ext.web.impl.RoutingContextImplBase.currentRouteNextHandlerIndex:()I
            iconst_1
            isub
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast io.vertx.core.Handler
            astore 2 /* contextHandler */
        start local 2 // io.vertx.core.Handler contextHandler
         2: .line 227
            aload 3
            monitorexit
         3: goto 6
        end local 2 // io.vertx.core.Handler contextHandler
      StackMap locals: io.vertx.ext.web.impl.RouteImpl io.vertx.ext.web.impl.RoutingContextImplBase top io.vertx.ext.web.impl.RouteImpl
      StackMap stack: java.lang.Throwable
         4: aload 3
            monitorexit
         5: athrow
        start local 2 // io.vertx.core.Handler contextHandler
         6: .line 231
      StackMap locals: io.vertx.ext.web.impl.RouteImpl io.vertx.ext.web.impl.RoutingContextImplBase io.vertx.core.Handler
      StackMap stack:
            aload 2 /* contextHandler */
            aload 1 /* context */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         7: .line 232
            return
        end local 2 // io.vertx.core.Handler contextHandler
        end local 1 // io.vertx.ext.web.impl.RoutingContextImplBase context
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    8     0            this  Lio/vertx/ext/web/impl/RouteImpl;
            0    8     1         context  Lio/vertx/ext/web/impl/RoutingContextImplBase;
            2    4     2  contextHandler  Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;
            6    8     2  contextHandler  Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
         Name  Flags
      context  

  void handleFailure(io.vertx.ext.web.impl.RoutingContextImplBase);
    descriptor: (Lio/vertx/ext/web/impl/RoutingContextImplBase;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // io.vertx.ext.web.impl.RoutingContextImplBase context
         0: .line 237
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         1: .line 238
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.failureHandlers:Ljava/util/List;
            aload 1 /* context */
            invokevirtual io.vertx.ext.web.impl.RoutingContextImplBase.currentRouteNextFailureHandlerIndex:()I
            iconst_1
            isub
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast io.vertx.core.Handler
            astore 2 /* failureHandler */
        start local 2 // io.vertx.core.Handler failureHandler
         2: .line 237
            aload 3
            monitorexit
         3: goto 6
        end local 2 // io.vertx.core.Handler failureHandler
      StackMap locals: io.vertx.ext.web.impl.RouteImpl io.vertx.ext.web.impl.RoutingContextImplBase top io.vertx.ext.web.impl.RouteImpl
      StackMap stack: java.lang.Throwable
         4: aload 3
            monitorexit
         5: athrow
        start local 2 // io.vertx.core.Handler failureHandler
         6: .line 241
      StackMap locals: io.vertx.ext.web.impl.RouteImpl io.vertx.ext.web.impl.RoutingContextImplBase io.vertx.core.Handler
      StackMap stack:
            aload 2 /* failureHandler */
            aload 1 /* context */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         7: .line 242
            return
        end local 2 // io.vertx.core.Handler failureHandler
        end local 1 // io.vertx.ext.web.impl.RoutingContextImplBase context
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    8     0            this  Lio/vertx/ext/web/impl/RouteImpl;
            0    8     1         context  Lio/vertx/ext/web/impl/RoutingContextImplBase;
            2    4     2  failureHandler  Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;
            6    8     2  failureHandler  Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
         Name  Flags
      context  

  synchronized int matches(io.vertx.ext.web.impl.RoutingContextImplBase, java.lang.String, boolean);
    descriptor: (Lio/vertx/ext/web/impl/RoutingContextImplBase;Ljava/lang/String;Z)I
    flags: (0x0020) ACC_SYNCHRONIZED
    Code:
      stack=4, locals=10, args_size=4
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // io.vertx.ext.web.impl.RoutingContextImplBase context
        start local 2 // java.lang.String mountPoint
        start local 3 // boolean failure
         0: .line 249
            iload 3 /* failure */
            ifeq 1
            aload 0 /* this */
            aload 1 /* context */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.hasNextFailureHandler:(Lio/vertx/ext/web/impl/RoutingContextImplBase;)Z
            ifeq 2
      StackMap locals:
      StackMap stack:
         1: iload 3 /* failure */
            ifne 3
            aload 0 /* this */
            aload 1 /* context */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.hasNextContextHandler:(Lio/vertx/ext/web/impl/RoutingContextImplBase;)Z
            ifne 3
         2: .line 250
      StackMap locals:
      StackMap stack:
            sipush 404
            ireturn
         3: .line 252
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.enabled:Z
            ifne 5
         4: .line 253
            sipush 404
            ireturn
         5: .line 255
      StackMap locals:
      StackMap stack:
            aload 1 /* context */
            invokevirtual io.vertx.ext.web.impl.RoutingContextImplBase.request:()Lio/vertx/core/http/HttpServerRequest;
            astore 4 /* request */
        start local 4 // io.vertx.core.http.HttpServerRequest request
         6: .line 256
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.path:Ljava/lang/String;
            ifnull 8
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.pattern:Ljava/util/regex/Pattern;
            ifnonnull 8
            aload 0 /* this */
            aload 2 /* mountPoint */
            aload 1 /* context */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.pathMatches:(Ljava/lang/String;Lio/vertx/ext/web/RoutingContext;)Z
            ifne 8
         7: .line 257
            sipush 404
            ireturn
         8: .line 259
      StackMap locals: io.vertx.core.http.HttpServerRequest
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.pattern:Ljava/util/regex/Pattern;
            ifnull 48
         9: .line 260
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.useNormalisedPath:Z
            ifeq 10
            aload 1 /* context */
            invokevirtual io.vertx.ext.web.impl.RoutingContextImplBase.normalisedPath:()Ljava/lang/String;
            goto 11
      StackMap locals:
      StackMap stack:
        10: aload 1 /* context */
            invokevirtual io.vertx.ext.web.impl.RoutingContextImplBase.request:()Lio/vertx/core/http/HttpServerRequest;
            invokeinterface io.vertx.core.http.HttpServerRequest.path:()Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
        11: astore 5 /* path */
        start local 5 // java.lang.String path
        12: .line 261
            aload 2 /* mountPoint */
            ifnull 14
        13: .line 262
            aload 5 /* path */
            aload 2 /* mountPoint */
            invokevirtual java.lang.String.length:()I
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            astore 5 /* path */
        14: .line 265
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.pattern:Ljava/util/regex/Pattern;
            aload 5 /* path */
            invokevirtual java.util.regex.Pattern.matcher:(Ljava/lang/CharSequence;)Ljava/util/regex/Matcher;
            astore 6 /* m */
        start local 6 // java.util.regex.Matcher m
        15: .line 266
            aload 6 /* m */
            invokevirtual java.util.regex.Matcher.matches:()Z
            ifeq 47
        16: .line 267
            aload 6 /* m */
            invokevirtual java.util.regex.Matcher.groupCount:()I
            ifle 48
        17: .line 268
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.groups:Ljava/util/List;
            ifnull 32
        18: .line 271
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        19: goto 30
        20: .line 272
      StackMap locals: java.util.regex.Matcher int
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.groups:Ljava/util/List;
            iload 7 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            astore 8 /* k */
        start local 8 // java.lang.String k
        21: .line 279
            aload 6 /* m */
            new java.lang.StringBuilder
            dup
            ldc "p"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 7 /* i */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.util.regex.Matcher.group:(Ljava/lang/String;)Ljava/lang/String;
            astore 9 /* undecodedValue */
        start local 9 // java.lang.String undecodedValue
        22: .line 280
            goto 28
        end local 9 // java.lang.String undecodedValue
      StackMap locals: io.vertx.ext.web.impl.RouteImpl io.vertx.ext.web.impl.RoutingContextImplBase java.lang.String int io.vertx.core.http.HttpServerRequest java.lang.String java.util.regex.Matcher int java.lang.String
      StackMap stack: java.lang.IllegalArgumentException
        23: pop
        24: .line 282
            aload 6 /* m */
            aload 8 /* k */
            invokevirtual java.util.regex.Matcher.group:(Ljava/lang/String;)Ljava/lang/String;
            astore 9 /* undecodedValue */
        start local 9 // java.lang.String undecodedValue
        25: .line 283
            goto 28
        end local 9 // java.lang.String undecodedValue
      StackMap locals:
      StackMap stack: java.lang.IllegalArgumentException
        26: pop
        27: .line 285
            aload 6 /* m */
            iload 7 /* i */
            iconst_1
            iadd
            invokevirtual java.util.regex.Matcher.group:(I)Ljava/lang/String;
            astore 9 /* undecodedValue */
        start local 9 // java.lang.String undecodedValue
        28: .line 288
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            aload 1 /* context */
            aload 8 /* k */
            aload 9 /* undecodedValue */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.addPathParam:(Lio/vertx/ext/web/RoutingContext;Ljava/lang/String;Ljava/lang/String;)V
        end local 9 // java.lang.String undecodedValue
        end local 8 // java.lang.String k
        29: .line 271
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        30: iload 7 /* i */
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.groups:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmplt 20
        end local 7 // int i
        31: .line 290
            goto 48
        32: .line 293
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.namedGroupsInRegex:Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 8
            goto 37
      StackMap locals: io.vertx.ext.web.impl.RouteImpl io.vertx.ext.web.impl.RoutingContextImplBase java.lang.String int io.vertx.core.http.HttpServerRequest java.lang.String java.util.regex.Matcher top java.util.Iterator
      StackMap stack:
        33: aload 8
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 7 /* namedGroup */
        start local 7 // java.lang.String namedGroup
        34: .line 294
            aload 6 /* m */
            aload 7 /* namedGroup */
            invokevirtual java.util.regex.Matcher.group:(Ljava/lang/String;)Ljava/lang/String;
            astore 9 /* namedGroupValue */
        start local 9 // java.lang.String namedGroupValue
        35: .line 295
            aload 9 /* namedGroupValue */
            ifnull 37
        36: .line 296
            aload 0 /* this */
            aload 1 /* context */
            aload 7 /* namedGroup */
            aload 9 /* namedGroupValue */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.addPathParam:(Lio/vertx/ext/web/RoutingContext;Ljava/lang/String;Ljava/lang/String;)V
        end local 9 // java.lang.String namedGroupValue
        end local 7 // java.lang.String namedGroup
        37: .line 293
      StackMap locals:
      StackMap stack:
            aload 8
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 33
        38: .line 299
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        39: goto 45
        40: .line 300
      StackMap locals: io.vertx.ext.web.impl.RouteImpl io.vertx.ext.web.impl.RoutingContextImplBase java.lang.String int io.vertx.core.http.HttpServerRequest java.lang.String java.util.regex.Matcher int
      StackMap stack:
            aload 6 /* m */
            iload 7 /* i */
            iconst_1
            iadd
            invokevirtual java.util.regex.Matcher.group:(I)Ljava/lang/String;
            astore 8 /* group */
        start local 8 // java.lang.String group
        41: .line 301
            aload 8 /* group */
            ifnull 44
        42: .line 302
            new java.lang.StringBuilder
            dup
            ldc "param"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 7 /* i */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 9 /* k */
        start local 9 // java.lang.String k
        43: .line 303
            aload 0 /* this */
            aload 1 /* context */
            aload 9 /* k */
            aload 8 /* group */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.addPathParam:(Lio/vertx/ext/web/RoutingContext;Ljava/lang/String;Ljava/lang/String;)V
        end local 9 // java.lang.String k
        end local 8 // java.lang.String group
        44: .line 299
      StackMap locals:
      StackMap stack:
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        45: iload 7 /* i */
            aload 6 /* m */
            invokevirtual java.util.regex.Matcher.groupCount:()I
            if_icmplt 40
        end local 7 // int i
        46: .line 308
            goto 48
        47: .line 309
      StackMap locals:
      StackMap stack:
            sipush 404
            ireturn
        end local 6 // java.util.regex.Matcher m
        end local 5 // java.lang.String path
        48: .line 313
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.methods:Ljava/util/Set;
            invokeinterface java.util.Set.isEmpty:()Z
            ifne 50
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.methods:Ljava/util/Set;
            aload 4 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.method:()Lio/vertx/core/http/HttpMethod;
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifne 50
        49: .line 315
            sipush 405
            ireturn
        50: .line 318
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.consumes:Ljava/util/Set;
            invokeinterface java.util.Set.isEmpty:()Z
            ifne 57
        51: .line 320
            aload 1 /* context */
            invokevirtual io.vertx.ext.web.impl.RoutingContextImplBase.parsedHeaders:()Lio/vertx/ext/web/ParsedHeaderValues;
            invokeinterface io.vertx.ext.web.ParsedHeaderValues.contentType:()Lio/vertx/ext/web/MIMEHeader;
            astore 5 /* contentType */
        start local 5 // io.vertx.ext.web.MIMEHeader contentType
        52: .line 321
            aload 5 /* contentType */
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.consumes:Ljava/util/Set;
            invokeinterface io.vertx.ext.web.MIMEHeader.findMatchedBy:(Ljava/util/Collection;)Lio/vertx/ext/web/ParsedHeaderValue;
            checkcast io.vertx.ext.web.MIMEHeader
            astore 6 /* consumal */
        start local 6 // io.vertx.ext.web.MIMEHeader consumal
        53: .line 322
            aload 6 /* consumal */
            ifnonnull 57
            aload 5 /* contentType */
            invokeinterface io.vertx.ext.web.MIMEHeader.rawValue:()Ljava/lang/String;
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 54
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.emptyBodyPermittedWithConsumes:Z
            ifne 57
        54: .line 323
      StackMap locals: io.vertx.ext.web.MIMEHeader io.vertx.ext.web.MIMEHeader
      StackMap stack:
            aload 5 /* contentType */
            invokeinterface io.vertx.ext.web.MIMEHeader.rawValue:()Ljava/lang/String;
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 56
        55: .line 324
            sipush 400
            ireturn
        56: .line 326
      StackMap locals:
      StackMap stack:
            sipush 415
            ireturn
        end local 6 // io.vertx.ext.web.MIMEHeader consumal
        end local 5 // io.vertx.ext.web.MIMEHeader contentType
        57: .line 330
      StackMap locals:
      StackMap stack:
            aload 1 /* context */
            invokevirtual io.vertx.ext.web.impl.RoutingContextImplBase.parsedHeaders:()Lio/vertx/ext/web/ParsedHeaderValues;
            invokeinterface io.vertx.ext.web.ParsedHeaderValues.accept:()Ljava/util/List;
            astore 5 /* acceptableTypes */
        start local 5 // java.util.List acceptableTypes
        58: .line 331
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.produces:Ljava/util/Set;
            invokeinterface java.util.Set.isEmpty:()Z
            ifne 64
            aload 5 /* acceptableTypes */
            invokeinterface java.util.List.isEmpty:()Z
            ifne 64
        59: .line 332
            aload 1 /* context */
            invokevirtual io.vertx.ext.web.impl.RoutingContextImplBase.parsedHeaders:()Lio/vertx/ext/web/ParsedHeaderValues;
            aload 5 /* acceptableTypes */
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.produces:Ljava/util/Set;
            invokeinterface io.vertx.ext.web.ParsedHeaderValues.findBestUserAcceptedIn:(Ljava/util/List;Ljava/util/Collection;)Lio/vertx/ext/web/ParsedHeaderValue;
            checkcast io.vertx.ext.web.MIMEHeader
            astore 6 /* selectedAccept */
        start local 6 // io.vertx.ext.web.MIMEHeader selectedAccept
        60: .line 333
            aload 6 /* selectedAccept */
            ifnull 63
        61: .line 334
            aload 1 /* context */
            aload 6 /* selectedAccept */
            invokeinterface io.vertx.ext.web.MIMEHeader.rawValue:()Ljava/lang/String;
            invokevirtual io.vertx.ext.web.impl.RoutingContextImplBase.setAcceptableContentType:(Ljava/lang/String;)V
        62: .line 335
            iconst_0
            ireturn
        63: .line 337
      StackMap locals: java.util.List io.vertx.ext.web.MIMEHeader
      StackMap stack:
            sipush 406
            ireturn
        end local 6 // io.vertx.ext.web.MIMEHeader selectedAccept
        64: .line 339
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 5 // java.util.List acceptableTypes
        end local 4 // io.vertx.core.http.HttpServerRequest request
        end local 3 // boolean failure
        end local 2 // java.lang.String mountPoint
        end local 1 // io.vertx.ext.web.impl.RoutingContextImplBase context
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   65     0             this  Lio/vertx/ext/web/impl/RouteImpl;
            0   65     1          context  Lio/vertx/ext/web/impl/RoutingContextImplBase;
            0   65     2       mountPoint  Ljava/lang/String;
            0   65     3          failure  Z
            6   65     4          request  Lio/vertx/core/http/HttpServerRequest;
           12   48     5             path  Ljava/lang/String;
           15   48     6                m  Ljava/util/regex/Matcher;
           19   31     7                i  I
           21   29     8                k  Ljava/lang/String;
           22   23     9   undecodedValue  Ljava/lang/String;
           25   26     9   undecodedValue  Ljava/lang/String;
           28   29     9   undecodedValue  Ljava/lang/String;
           34   37     7       namedGroup  Ljava/lang/String;
           35   37     9  namedGroupValue  Ljava/lang/String;
           39   46     7                i  I
           41   44     8            group  Ljava/lang/String;
           43   44     9                k  Ljava/lang/String;
           52   57     5      contentType  Lio/vertx/ext/web/MIMEHeader;
           53   57     6         consumal  Lio/vertx/ext/web/MIMEHeader;
           58   65     5  acceptableTypes  Ljava/util/List<Lio/vertx/ext/web/MIMEHeader;>;
           60   64     6   selectedAccept  Lio/vertx/ext/web/MIMEHeader;
      Exception table:
        from    to  target  type
          21    22      23  Class java.lang.IllegalArgumentException
          24    25      26  Class java.lang.IllegalArgumentException
    MethodParameters:
            Name  Flags
      context     
      mountPoint  
      failure     

  private void addPathParam(io.vertx.ext.web.RoutingContext, java.lang.String, java.lang.String);
    descriptor: (Lio/vertx/ext/web/RoutingContext;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // io.vertx.ext.web.RoutingContext context
        start local 2 // java.lang.String name
        start local 3 // java.lang.String value
         0: .line 343
            aload 1 /* context */
            invokeinterface io.vertx.ext.web.RoutingContext.request:()Lio/vertx/core/http/HttpServerRequest;
            astore 4 /* request */
        start local 4 // io.vertx.core.http.HttpServerRequest request
         1: .line 344
            aload 3 /* value */
            iconst_0
            invokestatic io.vertx.core.net.impl.URIDecoder.decodeURIComponent:(Ljava/lang/String;Z)Ljava/lang/String;
            astore 5 /* decodedValue */
        start local 5 // java.lang.String decodedValue
         2: .line 345
            aload 4 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.params:()Lio/vertx/core/MultiMap;
            aload 2 /* name */
            invokeinterface io.vertx.core.MultiMap.contains:(Ljava/lang/String;)Z
            ifne 4
         3: .line 346
            aload 4 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.params:()Lio/vertx/core/MultiMap;
            aload 2 /* name */
            aload 5 /* decodedValue */
            invokeinterface io.vertx.core.MultiMap.add:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            pop
         4: .line 348
      StackMap locals: io.vertx.core.http.HttpServerRequest java.lang.String
      StackMap stack:
            aload 1 /* context */
            invokeinterface io.vertx.ext.web.RoutingContext.pathParams:()Ljava/util/Map;
            aload 2 /* name */
            aload 5 /* decodedValue */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         5: .line 349
            return
        end local 5 // java.lang.String decodedValue
        end local 4 // io.vertx.core.http.HttpServerRequest request
        end local 3 // java.lang.String value
        end local 2 // java.lang.String name
        end local 1 // io.vertx.ext.web.RoutingContext context
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lio/vertx/ext/web/impl/RouteImpl;
            0    6     1       context  Lio/vertx/ext/web/RoutingContext;
            0    6     2          name  Ljava/lang/String;
            0    6     3         value  Ljava/lang/String;
            1    6     4       request  Lio/vertx/core/http/HttpServerRequest;
            2    6     5  decodedValue  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      context  
      name     
      value    

  io.vertx.ext.web.impl.RouterImpl router();
    descriptor: ()Lio/vertx/ext/web/impl/RouterImpl;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
         0: .line 352
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.router:Lio/vertx/ext/web/impl/RouterImpl;
            areturn
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RouteImpl;

  private boolean pathMatches(java.lang.String, io.vertx.ext.web.RoutingContext);
    descriptor: (Ljava/lang/String;Lio/vertx/ext/web/RoutingContext;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // java.lang.String mountPoint
        start local 2 // io.vertx.ext.web.RoutingContext ctx
         0: .line 356
            aload 1 /* mountPoint */
            ifnonnull 1
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.path:Ljava/lang/String;
            goto 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.StringBuilder
            dup
            aload 1 /* mountPoint */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.path:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
         2: astore 3 /* thePath */
        start local 3 // java.lang.String thePath
         3: .line 359
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.useNormalisedPath:Z
            ifeq 6
         4: .line 361
            aload 2 /* ctx */
            invokeinterface io.vertx.ext.web.RoutingContext.normalisedPath:()Ljava/lang/String;
            astore 4 /* requestPath */
        start local 4 // java.lang.String requestPath
         5: .line 362
            goto 9
        end local 4 // java.lang.String requestPath
         6: .line 363
      StackMap locals: java.lang.String
      StackMap stack:
            aload 2 /* ctx */
            invokeinterface io.vertx.ext.web.RoutingContext.request:()Lio/vertx/core/http/HttpServerRequest;
            invokeinterface io.vertx.core.http.HttpServerRequest.path:()Ljava/lang/String;
            astore 4 /* requestPath */
        start local 4 // java.lang.String requestPath
         7: .line 365
            aload 4 /* requestPath */
            ifnonnull 9
         8: .line 366
            ldc "/"
            astore 4 /* requestPath */
         9: .line 370
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.exactPath:Z
            ifeq 11
        10: .line 371
            aload 0 /* this */
            aload 4 /* requestPath */
            aload 3 /* thePath */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.pathMatchesExact:(Ljava/lang/String;Ljava/lang/String;)Z
            ireturn
        11: .line 373
      StackMap locals:
      StackMap stack:
            aload 3 /* thePath */
            ldc "/"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifeq 13
            aload 4 /* requestPath */
            aload 0 /* this */
            aload 3 /* thePath */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.removeTrailing:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 13
        12: .line 374
            iconst_1
            ireturn
        13: .line 376
      StackMap locals:
      StackMap stack:
            aload 4 /* requestPath */
            aload 3 /* thePath */
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ireturn
        end local 4 // java.lang.String requestPath
        end local 3 // java.lang.String thePath
        end local 2 // io.vertx.ext.web.RoutingContext ctx
        end local 1 // java.lang.String mountPoint
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Lio/vertx/ext/web/impl/RouteImpl;
            0   14     1   mountPoint  Ljava/lang/String;
            0   14     2          ctx  Lio/vertx/ext/web/RoutingContext;
            3   14     3      thePath  Ljava/lang/String;
            5    6     4  requestPath  Ljava/lang/String;
            7   14     4  requestPath  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      mountPoint  
      ctx         

  private boolean pathMatchesExact(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // java.lang.String path1
        start local 2 // java.lang.String path2
         0: .line 382
            aload 0 /* this */
            aload 1 /* path1 */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.removeTrailing:(Ljava/lang/String;)Ljava/lang/String;
            aload 0 /* this */
            aload 2 /* path2 */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.removeTrailing:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.String path2
        end local 1 // java.lang.String path1
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/ext/web/impl/RouteImpl;
            0    1     1  path1  Ljava/lang/String;
            0    1     2  path2  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      path1  
      path2  

  private java.lang.String removeTrailing(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // java.lang.String path
         0: .line 386
            aload 1 /* path */
            invokevirtual java.lang.String.length:()I
            istore 2 /* i */
        start local 2 // int i
         1: .line 387
            aload 1 /* path */
            iload 2 /* i */
            iconst_1
            isub
            invokevirtual java.lang.String.charAt:(I)C
            bipush 47
            if_icmpne 3
         2: .line 388
            aload 1 /* path */
            iconst_0
            iload 2 /* i */
            iconst_1
            isub
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            astore 1 /* path */
         3: .line 390
      StackMap locals: int
      StackMap stack:
            aload 1 /* path */
            areturn
        end local 2 // int i
        end local 1 // java.lang.String path
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/ext/web/impl/RouteImpl;
            0    4     1  path  Ljava/lang/String;
            1    4     2     i  I
    MethodParameters:
      Name  Flags
      path  

  private void setPath(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // java.lang.String path
         0: .line 396
            aload 1 /* path */
            bipush 58
            invokevirtual java.lang.String.indexOf:(I)I
            iconst_m1
            if_icmpeq 4
         1: .line 397
            aload 0 /* this */
            aload 1 /* path */
            invokevirtual io.vertx.ext.web.impl.RouteImpl.createPatternRegex:(Ljava/lang/String;)V
         2: .line 398
            aload 0 /* this */
            aload 1 /* path */
            putfield io.vertx.ext.web.impl.RouteImpl.path:Ljava/lang/String;
         3: .line 399
            goto 10
         4: .line 400
      StackMap locals:
      StackMap stack:
            aload 1 /* path */
            aload 1 /* path */
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            invokevirtual java.lang.String.charAt:(I)C
            bipush 42
            if_icmpeq 8
         5: .line 401
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.web.impl.RouteImpl.exactPath:Z
         6: .line 402
            aload 0 /* this */
            aload 1 /* path */
            putfield io.vertx.ext.web.impl.RouteImpl.path:Ljava/lang/String;
         7: .line 403
            goto 10
         8: .line 404
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.web.impl.RouteImpl.exactPath:Z
         9: .line 405
            aload 0 /* this */
            aload 1 /* path */
            iconst_0
            aload 1 /* path */
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            putfield io.vertx.ext.web.impl.RouteImpl.path:Ljava/lang/String;
        10: .line 408
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String path
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lio/vertx/ext/web/impl/RouteImpl;
            0   11     1  path  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  

  private void setRegex(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // java.lang.String regex
         0: .line 411
            aload 0 /* this */
            aload 1 /* regex */
            invokestatic java.util.regex.Pattern.compile:(Ljava/lang/String;)Ljava/util/regex/Pattern;
            putfield io.vertx.ext.web.impl.RouteImpl.pattern:Ljava/util/regex/Pattern;
         1: .line 412
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.pattern:Ljava/util/regex/Pattern;
            invokevirtual java.util.regex.Pattern.pattern:()Ljava/lang/String;
            invokevirtual io.vertx.ext.web.impl.RouteImpl.findNamedGroups:(Ljava/lang/String;)Ljava/util/Set;
            astore 2 /* namedGroups */
        start local 2 // java.util.Set namedGroups
         2: .line 413
            aload 2 /* namedGroups */
            invokeinterface java.util.Set.isEmpty:()Z
            ifne 4
         3: .line 414
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.namedGroupsInRegex:Ljava/util/Set;
            aload 2 /* namedGroups */
            invokeinterface java.util.Set.addAll:(Ljava/util/Collection;)Z
            pop
         4: .line 416
      StackMap locals: java.util.Set
      StackMap stack:
            return
        end local 2 // java.util.Set namedGroups
        end local 1 // java.lang.String regex
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lio/vertx/ext/web/impl/RouteImpl;
            0    5     1        regex  Ljava/lang/String;
            2    5     2  namedGroups  Ljava/util/Set<Ljava/lang/String;>;
    MethodParameters:
       Name  Flags
      regex  

  private java.util.Set<java.lang.String> findNamedGroups(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/util/Set;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // java.lang.String path
         0: .line 419
            new java.util.TreeSet
            dup
            invokespecial java.util.TreeSet.<init>:()V
            astore 2 /* namedGroups */
        start local 2 // java.util.Set namedGroups
         1: .line 420
            ldc "\\(\\?<([a-zA-Z][a-zA-Z0-9]*)>"
            invokestatic java.util.regex.Pattern.compile:(Ljava/lang/String;)Ljava/util/regex/Pattern;
            aload 1 /* path */
            invokevirtual java.util.regex.Pattern.matcher:(Ljava/lang/CharSequence;)Ljava/util/regex/Matcher;
            astore 3 /* m */
        start local 3 // java.util.regex.Matcher m
         2: .line 422
            goto 4
         3: .line 423
      StackMap locals: java.util.Set java.util.regex.Matcher
      StackMap stack:
            aload 2 /* namedGroups */
            aload 3 /* m */
            iconst_1
            invokevirtual java.util.regex.Matcher.group:(I)Ljava/lang/String;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         4: .line 422
      StackMap locals:
      StackMap stack:
            aload 3 /* m */
            invokevirtual java.util.regex.Matcher.find:()Z
            ifne 3
         5: .line 425
            aload 2 /* namedGroups */
            areturn
        end local 3 // java.util.regex.Matcher m
        end local 2 // java.util.Set namedGroups
        end local 1 // java.lang.String path
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lio/vertx/ext/web/impl/RouteImpl;
            0    6     1         path  Ljava/lang/String;
            1    6     2  namedGroups  Ljava/util/Set<Ljava/lang/String;>;
            2    6     3            m  Ljava/util/regex/Matcher;
    Signature: (Ljava/lang/String;)Ljava/util/Set<Ljava/lang/String;>;
    MethodParameters:
      Name  Flags
      path  

  private void createPatternRegex(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=7, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // java.lang.String path
         0: .line 436
            getstatic io.vertx.ext.web.impl.RouteImpl.RE_OPERATORS_NO_STAR:Ljava/util/regex/Pattern;
            aload 1 /* path */
            invokevirtual java.util.regex.Pattern.matcher:(Ljava/lang/CharSequence;)Ljava/util/regex/Matcher;
            ldc "\\\\$1"
            invokevirtual java.util.regex.Matcher.replaceAll:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* path */
         1: .line 438
            aload 1 /* path */
            aload 1 /* path */
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            invokevirtual java.lang.String.charAt:(I)C
            bipush 42
            if_icmpne 3
         2: .line 439
            new java.lang.StringBuilder
            dup
            aload 1 /* path */
            iconst_0
            aload 1 /* path */
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ".*"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 1 /* path */
         3: .line 442
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.ext.web.impl.RouteImpl.RE_TOKEN_SEARCH:Ljava/util/regex/Pattern;
            aload 1 /* path */
            invokevirtual java.util.regex.Pattern.matcher:(Ljava/lang/CharSequence;)Ljava/util/regex/Matcher;
            astore 2 /* m */
        start local 2 // java.util.regex.Matcher m
         4: .line 443
            new java.lang.StringBuffer
            dup
            invokespecial java.lang.StringBuffer.<init>:()V
            astore 3 /* sb */
        start local 3 // java.lang.StringBuffer sb
         5: .line 444
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield io.vertx.ext.web.impl.RouteImpl.groups:Ljava/util/List;
         6: .line 445
            iconst_0
            istore 4 /* index */
        start local 4 // int index
         7: .line 446
            goto 15
         8: .line 447
      StackMap locals: java.util.regex.Matcher java.lang.StringBuffer int
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "p"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 4 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 5 /* param */
        start local 5 // java.lang.String param
         9: .line 448
            aload 2 /* m */
            invokevirtual java.util.regex.Matcher.group:()Ljava/lang/String;
            iconst_1
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            astore 6 /* group */
        start local 6 // java.lang.String group
        10: .line 449
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.groups:Ljava/util/List;
            aload 6 /* group */
            invokeinterface java.util.List.contains:(Ljava/lang/Object;)Z
            ifeq 12
        11: .line 450
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot use identifier "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 6 /* group */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " more than once in pattern string"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 452
      StackMap locals: java.lang.String java.lang.String
      StackMap stack:
            aload 2 /* m */
            aload 3 /* sb */
            new java.lang.StringBuilder
            dup
            ldc "(?<"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 5 /* param */
            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;
            invokevirtual java.util.regex.Matcher.appendReplacement:(Ljava/lang/StringBuffer;Ljava/lang/String;)Ljava/util/regex/Matcher;
            pop
        13: .line 453
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.groups:Ljava/util/List;
            aload 6 /* group */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        14: .line 454
            iinc 4 /* index */ 1
        end local 6 // java.lang.String group
        end local 5 // java.lang.String param
        15: .line 446
      StackMap locals:
      StackMap stack:
            aload 2 /* m */
            invokevirtual java.util.regex.Matcher.find:()Z
            ifne 8
        16: .line 456
            aload 2 /* m */
            aload 3 /* sb */
            invokevirtual java.util.regex.Matcher.appendTail:(Ljava/lang/StringBuffer;)Ljava/lang/StringBuffer;
            pop
        17: .line 457
            aload 3 /* sb */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            astore 1 /* path */
        18: .line 458
            aload 0 /* this */
            aload 1 /* path */
            invokestatic java.util.regex.Pattern.compile:(Ljava/lang/String;)Ljava/util/regex/Pattern;
            putfield io.vertx.ext.web.impl.RouteImpl.pattern:Ljava/util/regex/Pattern;
        19: .line 459
            return
        end local 4 // int index
        end local 3 // java.lang.StringBuffer sb
        end local 2 // java.util.regex.Matcher m
        end local 1 // java.lang.String path
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   20     0   this  Lio/vertx/ext/web/impl/RouteImpl;
            0   20     1   path  Ljava/lang/String;
            4   20     2      m  Ljava/util/regex/Matcher;
            5   20     3     sb  Ljava/lang/StringBuffer;
            7   20     4  index  I
            9   15     5  param  Ljava/lang/String;
           10   15     6  group  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  

  private void checkPath(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // java.lang.String path
         0: .line 462
            ldc ""
            aload 1 /* path */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 1
            aload 1 /* path */
            iconst_0
            invokevirtual java.lang.String.charAt:(I)C
            bipush 47
            if_icmpeq 2
         1: .line 463
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Path must start with /"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 465
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String path
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/web/impl/RouteImpl;
            0    3     1  path  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  

  int order();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
         0: .line 470
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.order:I
            ireturn
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RouteImpl;

  private void checkAdd();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
         0: .line 474
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.added:Z
            ifne 3
         1: .line 475
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.router:Lio/vertx/ext/web/impl/RouterImpl;
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.impl.RouterImpl.add:(Lio/vertx/ext/web/impl/RouteImpl;)V
         2: .line 476
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.web.impl.RouteImpl.added:Z
         3: .line 478
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/ext/web/impl/RouteImpl;

  protected synchronized boolean hasNextContextHandler(io.vertx.ext.web.impl.RoutingContextImplBase);
    descriptor: (Lio/vertx/ext/web/impl/RoutingContextImplBase;)Z
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // io.vertx.ext.web.impl.RoutingContextImplBase context
         0: .line 481
            aload 1 /* context */
            invokevirtual io.vertx.ext.web.impl.RoutingContextImplBase.currentRouteNextHandlerIndex:()I
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.contextHandlers:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // io.vertx.ext.web.impl.RoutingContextImplBase context
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/web/impl/RouteImpl;
            0    2     1  context  Lio/vertx/ext/web/impl/RoutingContextImplBase;
    MethodParameters:
         Name  Flags
      context  

  protected synchronized boolean hasNextFailureHandler(io.vertx.ext.web.impl.RoutingContextImplBase);
    descriptor: (Lio/vertx/ext/web/impl/RoutingContextImplBase;)Z
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // io.vertx.ext.web.impl.RoutingContextImplBase context
         0: .line 485
            aload 1 /* context */
            invokevirtual io.vertx.ext.web.impl.RoutingContextImplBase.currentRouteNextFailureHandlerIndex:()I
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RouteImpl.failureHandlers:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // io.vertx.ext.web.impl.RoutingContextImplBase context
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/web/impl/RouteImpl;
            0    2     1  context  Lio/vertx/ext/web/impl/RoutingContextImplBase;
    MethodParameters:
         Name  Flags
      context  

  public void setEmptyBodyPermittedWithConsumes(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RouteImpl this
        start local 1 // boolean emptyBodyPermittedWithConsumes
         0: .line 489
            aload 0 /* this */
            iload 1 /* emptyBodyPermittedWithConsumes */
            putfield io.vertx.ext.web.impl.RouteImpl.emptyBodyPermittedWithConsumes:Z
         1: .line 490
            return
        end local 1 // boolean emptyBodyPermittedWithConsumes
        end local 0 // io.vertx.ext.web.impl.RouteImpl this
      LocalVariableTable:
        Start  End  Slot                            Name  Signature
            0    2     0                            this  Lio/vertx/ext/web/impl/RouteImpl;
            0    2     1  emptyBodyPermittedWithConsumes  Z
    MethodParameters:
                                Name  Flags
      emptyBodyPermittedWithConsumes  
}
SourceFile: "RouteImpl.java"