public class io.vertx.ext.web.impl.RoutingContextDecorator implements io.vertx.ext.web.RoutingContext
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.web.impl.RoutingContextDecorator
  super_class: java.lang.Object
{
  private final io.vertx.ext.web.Route currentRoute;
    descriptor: Lio/vertx/ext/web/Route;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  public void <init>(io.vertx.ext.web.Route, io.vertx.ext.web.RoutingContext);
    descriptor: (Lio/vertx/ext/web/Route;Lio/vertx/ext/web/RoutingContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // io.vertx.ext.web.Route currentRoute
        start local 2 // io.vertx.ext.web.RoutingContext decoratedContext
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 1 /* currentRoute */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 34
            aload 2 /* decoratedContext */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 35
            aload 0 /* this */
            aload 1 /* currentRoute */
            putfield io.vertx.ext.web.impl.RoutingContextDecorator.currentRoute:Lio/vertx/ext/web/Route;
         4: .line 36
            aload 0 /* this */
            aload 2 /* decoratedContext */
            putfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
         5: .line 37
            return
        end local 2 // io.vertx.ext.web.RoutingContext decoratedContext
        end local 1 // io.vertx.ext.web.Route currentRoute
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    6     0              this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    6     1      currentRoute  Lio/vertx/ext/web/Route;
            0    6     2  decoratedContext  Lio/vertx/ext/web/RoutingContext;
    MethodParameters:
                  Name  Flags
      currentRoute      
      decoratedContext  

  public int addBodyEndHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // io.vertx.core.Handler handler
         0: .line 41
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1 /* handler */
            invokeinterface io.vertx.ext.web.RoutingContext.addBodyEndHandler:(Lio/vertx/core/Handler;)I
            ireturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)I
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.ext.web.RoutingContext addCookie(io.vertx.ext.web.Cookie);
    descriptor: (Lio/vertx/ext/web/Cookie;)Lio/vertx/ext/web/RoutingContext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // io.vertx.ext.web.Cookie cookie
         0: .line 46
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1 /* cookie */
            invokeinterface io.vertx.ext.web.RoutingContext.addCookie:(Lio/vertx/ext/web/Cookie;)Lio/vertx/ext/web/RoutingContext;
            areturn
        end local 1 // io.vertx.ext.web.Cookie cookie
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     1  cookie  Lio/vertx/ext/web/Cookie;
    MethodParameters:
        Name  Flags
      cookie  

  public int addHeadersEndHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // io.vertx.core.Handler handler
         0: .line 51
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1 /* handler */
            invokeinterface io.vertx.ext.web.RoutingContext.addHeadersEndHandler:(Lio/vertx/core/Handler;)I
            ireturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)I
    MethodParameters:
         Name  Flags
      handler  

  public int cookieCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 56
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.cookieCount:()I
            ireturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

  public java.util.Set<io.vertx.ext.web.Cookie> cookies();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 61
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.cookies:()Ljava/util/Set;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
    Signature: ()Ljava/util/Set<Lio/vertx/ext/web/Cookie;>;

  public io.vertx.ext.web.Route currentRoute();
    descriptor: ()Lio/vertx/ext/web/Route;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 66
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.currentRoute:Lio/vertx/ext/web/Route;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

  public java.util.Map<java.lang.String, java.lang.Object> data();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 71
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.data:()Ljava/util/Map;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
    Signature: ()Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;

  public void fail(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // int statusCode
         0: .line 77
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.impl.RoutingContextDecorator.vertx:()Lio/vertx/core/Vertx;
            aload 0 /* this */
            iload 1 /* statusCode */
            invokedynamic handle(Lio/vertx/ext/web/impl/RoutingContextDecorator;I)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/ext/web/impl/RoutingContextDecorator.lambda$0(ILjava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Vertx.runOnContext:(Lio/vertx/core/Handler;)V
         1: .line 78
            return
        end local 1 // int statusCode
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    2     1  statusCode  I
    MethodParameters:
            Name  Flags
      statusCode  

  public void fail(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // java.lang.Throwable throwable
         0: .line 83
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.impl.RoutingContextDecorator.vertx:()Lio/vertx/core/Vertx;
            aload 0 /* this */
            aload 1 /* throwable */
            invokedynamic handle(Lio/vertx/ext/web/impl/RoutingContextDecorator;Ljava/lang/Throwable;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/ext/web/impl/RoutingContextDecorator.lambda$1(Ljava/lang/Throwable;Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Vertx.runOnContext:(Lio/vertx/core/Handler;)V
         1: .line 84
            return
        end local 1 // java.lang.Throwable throwable
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    2     1  throwable  Ljava/lang/Throwable;
    MethodParameters:
           Name  Flags
      throwable  

  public void fail(int, java.lang.Throwable);
    descriptor: (ILjava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // int statusCode
        start local 2 // java.lang.Throwable throwable
         0: .line 88
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.impl.RoutingContextDecorator.vertx:()Lio/vertx/core/Vertx;
            aload 0 /* this */
            iload 1 /* statusCode */
            aload 2 /* throwable */
            invokedynamic handle(Lio/vertx/ext/web/impl/RoutingContextDecorator;ILjava/lang/Throwable;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/ext/web/impl/RoutingContextDecorator.lambda$2(ILjava/lang/Throwable;Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Vertx.runOnContext:(Lio/vertx/core/Handler;)V
         1: .line 89
            return
        end local 2 // java.lang.Throwable throwable
        end local 1 // int statusCode
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    2     1  statusCode  I
            0    2     2   throwable  Ljava/lang/Throwable;
    MethodParameters:
            Name  Flags
      statusCode  
      throwable   

  public boolean failed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 93
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.failed:()Z
            ireturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

  public java.lang.Throwable failure();
    descriptor: ()Ljava/lang/Throwable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 98
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.failure:()Ljava/lang/Throwable;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

  public java.util.Set<io.vertx.ext.web.FileUpload> fileUploads();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 103
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.fileUploads:()Ljava/util/Set;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
    Signature: ()Ljava/util/Set<Lio/vertx/ext/web/FileUpload;>;

  public <T> T get(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // java.lang.String key
         0: .line 108
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1 /* key */
            invokeinterface io.vertx.ext.web.RoutingContext.get:(Ljava/lang/String;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.String key
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     1   key  Ljava/lang/String;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;)TT;
    MethodParameters:
      Name  Flags
      key   

  public <T> T remove(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // java.lang.String key
         0: .line 113
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1 /* key */
            invokeinterface io.vertx.ext.web.RoutingContext.remove:(Ljava/lang/String;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.String key
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     1   key  Ljava/lang/String;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;)TT;
    MethodParameters:
      Name  Flags
      key   

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

  public io.vertx.core.buffer.Buffer getBody();
    descriptor: ()Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 123
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.getBody:()Lio/vertx/core/buffer/Buffer;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

  public io.vertx.core.json.JsonObject getBodyAsJson();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 128
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.getBodyAsJson:()Lio/vertx/core/json/JsonObject;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

  public io.vertx.core.json.JsonArray getBodyAsJsonArray();
    descriptor: ()Lio/vertx/core/json/JsonArray;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 133
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.getBodyAsJsonArray:()Lio/vertx/core/json/JsonArray;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

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

  public java.lang.String getBodyAsString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // java.lang.String encoding
         0: .line 143
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1 /* encoding */
            invokeinterface io.vertx.ext.web.RoutingContext.getBodyAsString:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String encoding
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     1  encoding  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      encoding  

  public io.vertx.ext.web.Cookie getCookie(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/Cookie;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // java.lang.String name
         0: .line 148
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1 /* name */
            invokeinterface io.vertx.ext.web.RoutingContext.getCookie:(Ljava/lang/String;)Lio/vertx/ext/web/Cookie;
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

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

  public void next();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 159
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.impl.RoutingContextDecorator.vertx:()Lio/vertx/core/Vertx;
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/ext/web/impl/RoutingContextDecorator;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/ext/web/impl/RoutingContextDecorator.lambda$3(Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Vertx.runOnContext:(Lio/vertx/core/Handler;)V
         1: .line 160
            return
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

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

  public io.vertx.ext.web.RoutingContext put(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/ext/web/RoutingContext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Object obj
         0: .line 169
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1 /* key */
            aload 2 /* obj */
            invokeinterface io.vertx.ext.web.RoutingContext.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/ext/web/RoutingContext;
            areturn
        end local 2 // java.lang.Object obj
        end local 1 // java.lang.String key
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     1   key  Ljava/lang/String;
            0    1     2   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   
      obj   

  public boolean removeBodyEndHandler(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // int handlerID
         0: .line 174
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            iload 1 /* handlerID */
            invokeinterface io.vertx.ext.web.RoutingContext.removeBodyEndHandler:(I)Z
            ireturn
        end local 1 // int handlerID
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     1  handlerID  I
    MethodParameters:
           Name  Flags
      handlerID  

  public io.vertx.ext.web.Cookie removeCookie(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)Lio/vertx/ext/web/Cookie;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // java.lang.String name
        start local 2 // boolean invalidate
         0: .line 179
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1 /* name */
            iload 2 /* invalidate */
            invokeinterface io.vertx.ext.web.RoutingContext.removeCookie:(Ljava/lang/String;Z)Lio/vertx/ext/web/Cookie;
            areturn
        end local 2 // boolean invalidate
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     1        name  Ljava/lang/String;
            0    1     2  invalidate  Z
    MethodParameters:
            Name  Flags
      name        
      invalidate  

  public boolean removeHeadersEndHandler(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // int handlerID
         0: .line 184
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            iload 1 /* handlerID */
            invokeinterface io.vertx.ext.web.RoutingContext.removeHeadersEndHandler:(I)Z
            ireturn
        end local 1 // int handlerID
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     1  handlerID  I
    MethodParameters:
           Name  Flags
      handlerID  

  public io.vertx.core.http.HttpServerRequest request();
    descriptor: ()Lio/vertx/core/http/HttpServerRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 189
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.request:()Lio/vertx/core/http/HttpServerRequest;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

  public io.vertx.core.http.HttpServerResponse response();
    descriptor: ()Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 194
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.response:()Lio/vertx/core/http/HttpServerResponse;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

  public io.vertx.ext.auth.User user();
    descriptor: ()Lio/vertx/ext/auth/User;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 199
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.user:()Lio/vertx/ext/auth/User;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

  public io.vertx.ext.web.Session session();
    descriptor: ()Lio/vertx/ext/web/Session;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 204
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.session:()Lio/vertx/ext/web/Session;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

  public io.vertx.ext.web.ParsedHeaderValues parsedHeaders();
    descriptor: ()Lio/vertx/ext/web/ParsedHeaderValues;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 209
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.parsedHeaders:()Lio/vertx/ext/web/ParsedHeaderValues;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

  public void setAcceptableContentType(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // java.lang.String contentType
         0: .line 214
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1 /* contentType */
            invokeinterface io.vertx.ext.web.RoutingContext.setAcceptableContentType:(Ljava/lang/String;)V
         1: .line 215
            return
        end local 1 // java.lang.String contentType
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    2     1  contentType  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      contentType  

  public void reroute(io.vertx.core.http.HttpMethod, java.lang.String);
    descriptor: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // io.vertx.core.http.HttpMethod method
        start local 2 // java.lang.String path
         0: .line 219
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1 /* method */
            aload 2 /* path */
            invokeinterface io.vertx.ext.web.RoutingContext.reroute:(Lio/vertx/core/http/HttpMethod;Ljava/lang/String;)V
         1: .line 220
            return
        end local 2 // java.lang.String path
        end local 1 // io.vertx.core.http.HttpMethod method
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    2     1  method  Lio/vertx/core/http/HttpMethod;
            0    2     2    path  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      method  
      path    

  public java.util.List<io.vertx.ext.web.Locale> acceptableLocales();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 224
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.acceptableLocales:()Ljava/util/List;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
    Signature: ()Ljava/util/List<Lio/vertx/ext/web/Locale;>;

  public java.util.Map<java.lang.String, java.lang.String> pathParams();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 229
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.pathParams:()Ljava/util/Map;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
    Signature: ()Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;

  public java.lang.String pathParam(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // java.lang.String name
         0: .line 234
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1 /* name */
            invokeinterface io.vertx.ext.web.RoutingContext.pathParam:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     1  name  Ljava/lang/String;
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
      Name  Flags
      name  

  public io.vertx.core.MultiMap queryParams();
    descriptor: ()Lio/vertx/core/MultiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 239
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.queryParams:()Lio/vertx/core/MultiMap;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

  public java.util.List<java.lang.String> queryParam(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // java.lang.String query
         0: .line 244
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1 /* query */
            invokeinterface io.vertx.ext.web.RoutingContext.queryParam:(Ljava/lang/String;)Ljava/util/List;
            areturn
        end local 1 // java.lang.String query
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     1  query  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Ljava/util/List<Ljava/lang/String;>;
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
       Name  Flags
      query  

  public void setBody(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // io.vertx.core.buffer.Buffer body
         0: .line 249
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1 /* body */
            invokeinterface io.vertx.ext.web.RoutingContext.setBody:(Lio/vertx/core/buffer/Buffer;)V
         1: .line 250
            return
        end local 1 // io.vertx.core.buffer.Buffer body
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    2     1  body  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
      Name  Flags
      body  

  public void setSession(io.vertx.ext.web.Session);
    descriptor: (Lio/vertx/ext/web/Session;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // io.vertx.ext.web.Session session
         0: .line 254
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1 /* session */
            invokeinterface io.vertx.ext.web.RoutingContext.setSession:(Lio/vertx/ext/web/Session;)V
         1: .line 255
            return
        end local 1 // io.vertx.ext.web.Session session
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    2     1  session  Lio/vertx/ext/web/Session;
    MethodParameters:
         Name  Flags
      session  

  public void setUser(io.vertx.ext.auth.User);
    descriptor: (Lio/vertx/ext/auth/User;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // io.vertx.ext.auth.User user
         0: .line 259
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1 /* user */
            invokeinterface io.vertx.ext.web.RoutingContext.setUser:(Lio/vertx/ext/auth/User;)V
         1: .line 260
            return
        end local 1 // io.vertx.ext.auth.User user
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    2     1  user  Lio/vertx/ext/auth/User;
    MethodParameters:
      Name  Flags
      user  

  public void clearUser();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 264
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.clearUser:()V
         1: .line 265
            return
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

  public int statusCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 269
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.statusCode:()I
            ireturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

  public io.vertx.core.Vertx vertx();
    descriptor: ()Lio/vertx/core/Vertx;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
         0: .line 274
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.vertx:()Lio/vertx/core/Vertx;
            areturn
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/impl/RoutingContextDecorator;

  private void lambda$0(int, java.lang.Void);
    descriptor: (ILjava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 2 // java.lang.Void future
         0: .line 77
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            iload 1
            invokeinterface io.vertx.ext.web.RoutingContext.fail:(I)V
            return
        end local 2 // java.lang.Void future
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     2  future  Ljava/lang/Void;

  private void lambda$1(java.lang.Throwable, java.lang.Void);
    descriptor: (Ljava/lang/Throwable;Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 2 // java.lang.Void future
         0: .line 83
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            aload 1
            invokeinterface io.vertx.ext.web.RoutingContext.fail:(Ljava/lang/Throwable;)V
            return
        end local 2 // java.lang.Void future
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     2  future  Ljava/lang/Void;

  private void lambda$2(int, java.lang.Throwable, java.lang.Void);
    descriptor: (ILjava/lang/Throwable;Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 3 // java.lang.Void future
         0: .line 88
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            iload 1
            aload 2
            invokeinterface io.vertx.ext.web.RoutingContext.fail:(ILjava/lang/Throwable;)V
            return
        end local 3 // java.lang.Void future
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     3  future  Ljava/lang/Void;

  private void lambda$3(java.lang.Void);
    descriptor: (Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
        start local 1 // java.lang.Void future
         0: .line 159
            aload 0 /* this */
            getfield io.vertx.ext.web.impl.RoutingContextDecorator.decoratedContext:Lio/vertx/ext/web/RoutingContext;
            invokeinterface io.vertx.ext.web.RoutingContext.next:()V
            return
        end local 1 // java.lang.Void future
        end local 0 // io.vertx.ext.web.impl.RoutingContextDecorator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/vertx/ext/web/impl/RoutingContextDecorator;
            0    1     1  future  Ljava/lang/Void;
}
SourceFile: "RoutingContextDecorator.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles