public interface io.vertx.ext.web.RoutingContext
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.ext.web.RoutingContext
  super_class: java.lang.Object
{
  public abstract io.vertx.core.http.HttpServerRequest request();
    descriptor: ()Lio/vertx/core/http/HttpServerRequest;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.CacheReturn()

  public abstract io.vertx.core.http.HttpServerResponse response();
    descriptor: ()Lio/vertx/core/http/HttpServerResponse;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.CacheReturn()

  public abstract void next();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void fail(int);
    descriptor: (I)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
            Name  Flags
      statusCode  

  public abstract void fail(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
           Name  Flags
      throwable  

  public abstract void fail(int, java.lang.Throwable);
    descriptor: (ILjava/lang/Throwable;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
            Name  Flags
      statusCode  
      throwable   

  public abstract 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: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
      Name  Flags
      key   
      obj   

  public abstract <T> T get(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;)TT;
    MethodParameters:
      Name  Flags
      key   

  public abstract <T> T remove(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;)TT;
    MethodParameters:
      Name  Flags
      key   

  public abstract java.util.Map<java.lang.String, java.lang.Object> data();
    descriptor: ()Ljava/util/Map;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})

  public abstract io.vertx.core.Vertx vertx();
    descriptor: ()Lio/vertx/core/Vertx;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.CacheReturn()

  public abstract java.lang.String mountPoint();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()

  public abstract io.vertx.ext.web.Route currentRoute();
    descriptor: ()Lio/vertx/ext/web/Route;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.String normalisedPath();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract io.vertx.ext.web.Cookie getCookie(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/Cookie;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
      Name  Flags
      name  

  public abstract io.vertx.ext.web.RoutingContext addCookie(io.vertx.ext.web.Cookie);
    descriptor: (Lio/vertx/ext/web/Cookie;)Lio/vertx/ext/web/RoutingContext;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
        Name  Flags
      cookie  

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

  public abstract io.vertx.ext.web.Cookie removeCookie(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)Lio/vertx/ext/web/Cookie;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
            Name  Flags
      name        
      invalidate  

  public abstract int cookieCount();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.util.Set<io.vertx.ext.web.Cookie> cookies();
    descriptor: ()Ljava/util/Set;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Ljava/util/Set<Lio/vertx/ext/web/Cookie;>;

  public abstract java.lang.String getBodyAsString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()

  public abstract java.lang.String getBodyAsString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
          Name  Flags
      encoding  

  public abstract io.vertx.core.json.JsonObject getBodyAsJson();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()

  public abstract io.vertx.core.json.JsonArray getBodyAsJsonArray();
    descriptor: ()Lio/vertx/core/json/JsonArray;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()

  public abstract io.vertx.core.buffer.Buffer getBody();
    descriptor: ()Lio/vertx/core/buffer/Buffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()

  public abstract java.util.Set<io.vertx.ext.web.FileUpload> fileUploads();
    descriptor: ()Ljava/util/Set;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Ljava/util/Set<Lio/vertx/ext/web/FileUpload;>;

  public abstract io.vertx.ext.web.Session session();
    descriptor: ()Lio/vertx/ext/web/Session;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()

  public abstract io.vertx.ext.auth.User user();
    descriptor: ()Lio/vertx/ext/auth/User;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()

  public abstract java.lang.Throwable failure();
    descriptor: ()Ljava/lang/Throwable;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.CacheReturn()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()

  public abstract int statusCode();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.CacheReturn()

  public abstract java.lang.String getAcceptableContentType();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()

  public abstract io.vertx.ext.web.ParsedHeaderValues parsedHeaders();
    descriptor: ()Lio/vertx/ext/web/ParsedHeaderValues;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.CacheReturn()

  public abstract int addHeadersEndHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)I
    MethodParameters:
         Name  Flags
      handler  

  public abstract boolean removeHeadersEndHandler(int);
    descriptor: (I)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
           Name  Flags
      handlerID  

  public abstract int addBodyEndHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)I
    MethodParameters:
         Name  Flags
      handler  

  public abstract boolean removeBodyEndHandler(int);
    descriptor: (I)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
           Name  Flags
      handlerID  

  public abstract boolean failed();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void setBody(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      body  

  public abstract void setSession(io.vertx.ext.web.Session);
    descriptor: (Lio/vertx/ext/web/Session;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
         Name  Flags
      session  

  public abstract void setUser(io.vertx.ext.auth.User);
    descriptor: (Lio/vertx/ext/auth/User;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      user  

  public abstract void clearUser();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void setAcceptableContentType(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
             Name  Flags
      contentType  

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

  public abstract void reroute(io.vertx.core.http.HttpMethod, java.lang.String);
    descriptor: (Lio/vertx/core/http/HttpMethod;Ljava/lang/String;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
        Name  Flags
      method  
      path    

  public abstract java.util.List<io.vertx.ext.web.Locale> acceptableLocales();
    descriptor: ()Ljava/util/List;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Ljava/util/List<Lio/vertx/ext/web/Locale;>;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
      io.vertx.codegen.annotations.CacheReturn()

  public java.util.List<io.vertx.ext.web.LanguageHeader> acceptableLanguages();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.RoutingContext this
         0: .line 459
            aload 0 /* this */
            invokeinterface io.vertx.ext.web.RoutingContext.parsedHeaders:()Lio/vertx/ext/web/ParsedHeaderValues;
            invokeinterface io.vertx.ext.web.ParsedHeaderValues.acceptLanguage:()Ljava/util/List;
            areturn
        end local 0 // io.vertx.ext.web.RoutingContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/RoutingContext;
    Signature: ()Ljava/util/List<Lio/vertx/ext/web/LanguageHeader;>;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.CacheReturn()

  public io.vertx.ext.web.Locale preferredLocale();
    descriptor: ()Lio/vertx/ext/web/Locale;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.RoutingContext this
         0: .line 472
            aload 0 /* this */
            invokeinterface io.vertx.ext.web.RoutingContext.preferredLanguage:()Lio/vertx/ext/web/LanguageHeader;
            areturn
        end local 0 // io.vertx.ext.web.RoutingContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/RoutingContext;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.CacheReturn()
      java.lang.Deprecated()

  public io.vertx.ext.web.LanguageHeader preferredLanguage();
    descriptor: ()Lio/vertx/ext/web/LanguageHeader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.ext.web.RoutingContext this
         0: .line 483
            aload 0 /* this */
            invokeinterface io.vertx.ext.web.RoutingContext.acceptableLanguages:()Ljava/util/List;
            astore 1 /* acceptableLanguages */
        start local 1 // java.util.List acceptableLanguages
         1: .line 484
            aload 1 /* acceptableLanguages */
            invokeinterface java.util.List.size:()I
            ifle 2
            aload 1 /* acceptableLanguages */
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast io.vertx.ext.web.LanguageHeader
            goto 3
      StackMap locals: java.util.List
      StackMap stack:
         2: aconst_null
      StackMap locals:
      StackMap stack: io.vertx.ext.web.LanguageHeader
         3: areturn
        end local 1 // java.util.List acceptableLanguages
        end local 0 // io.vertx.ext.web.RoutingContext this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    4     0                 this  Lio/vertx/ext/web/RoutingContext;
            1    4     1  acceptableLanguages  Ljava/util/List<+Lio/vertx/ext/web/LanguageHeader;>;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.CacheReturn()

  public abstract java.util.Map<java.lang.String, java.lang.String> pathParams();
    descriptor: ()Ljava/util/Map;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;

  public abstract java.lang.String pathParam(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
      Name  Flags
      name  

  public abstract io.vertx.core.MultiMap queryParams();
    descriptor: ()Lio/vertx/core/MultiMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.util.List<java.lang.String> queryParam(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/util/List;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/lang/String;)Ljava/util/List<Ljava/lang/String;>;
    MethodParameters:
      Name  Flags
      name  
}
SourceFile: "RoutingContext.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()