public interface io.vertx.core.http.HttpServerRequest extends io.vertx.core.streams.ReadStream<io.vertx.core.buffer.Buffer>
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.core.http.HttpServerRequest
  super_class: java.lang.Object
{
  public abstract io.vertx.core.http.HttpServerRequest exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)Lio/vertx/core/http/HttpServerRequest;
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.core.http.HttpServerRequest handler(io.vertx.core.Handler<io.vertx.core.buffer.Buffer>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;)Lio/vertx/core/http/HttpServerRequest;
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.core.http.HttpServerRequest pause();
    descriptor: ()Lio/vertx/core/http/HttpServerRequest;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract io.vertx.core.http.HttpServerRequest resume();
    descriptor: ()Lio/vertx/core/http/HttpServerRequest;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract io.vertx.core.http.HttpServerRequest fetch(long);
    descriptor: (J)Lio/vertx/core/http/HttpServerRequest;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
        Name  Flags
      amount  

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

  public abstract io.vertx.core.http.HttpVersion version();
    descriptor: ()Lio/vertx/core/http/HttpVersion;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract io.vertx.core.http.HttpMethod method();
    descriptor: ()Lio/vertx/core/http/HttpMethod;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public boolean isSSL();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest this
         0: .line 77
            aload 0 /* this */
            invokeinterface io.vertx.core.http.HttpServerRequest.connection:()Lio/vertx/core/http/HttpConnection;
            invokeinterface io.vertx.core.http.HttpConnection.isSsl:()Z
            ireturn
        end local 0 // io.vertx.core.http.HttpServerRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/HttpServerRequest;

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

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

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

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

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

  public abstract long bytesRead();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  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 io.vertx.core.MultiMap headers();
    descriptor: ()Lio/vertx/core/MultiMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.CacheReturn()

  public java.lang.String getHeader(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.core.http.HttpServerRequest this
        start local 1 // java.lang.String headerName
         0: .line 135
            aload 0 /* this */
            invokeinterface io.vertx.core.http.HttpServerRequest.headers:()Lio/vertx/core/MultiMap;
            aload 1 /* headerName */
            invokeinterface io.vertx.core.MultiMap.get:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String headerName
        end local 0 // io.vertx.core.http.HttpServerRequest this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lio/vertx/core/http/HttpServerRequest;
            0    1     1  headerName  Ljava/lang/String;
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
            Name  Flags
      headerName  

  public java.lang.String getHeader(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.HttpServerRequest this
        start local 1 // java.lang.CharSequence headerName
         0: .line 146
            aload 0 /* this */
            invokeinterface io.vertx.core.http.HttpServerRequest.headers:()Lio/vertx/core/MultiMap;
            aload 1 /* headerName */
            invokeinterface io.vertx.core.MultiMap.get:(Ljava/lang/CharSequence;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.CharSequence headerName
        end local 0 // io.vertx.core.http.HttpServerRequest this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lio/vertx/core/http/HttpServerRequest;
            0    1     1  headerName  Ljava/lang/CharSequence;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    MethodParameters:
            Name  Flags
      headerName  

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

  public java.lang.String getParam(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.core.http.HttpServerRequest this
        start local 1 // java.lang.String paramName
         0: .line 163
            aload 0 /* this */
            invokeinterface io.vertx.core.http.HttpServerRequest.params:()Lio/vertx/core/MultiMap;
            aload 1 /* paramName */
            invokeinterface io.vertx.core.MultiMap.get:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String paramName
        end local 0 // io.vertx.core.http.HttpServerRequest this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/vertx/core/http/HttpServerRequest;
            0    1     1  paramName  Ljava/lang/String;
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
           Name  Flags
      paramName  

  public io.vertx.core.net.SocketAddress remoteAddress();
    descriptor: ()Lio/vertx/core/net/SocketAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest this
         0: .line 172
            aload 0 /* this */
            invokeinterface io.vertx.core.http.HttpServerRequest.connection:()Lio/vertx/core/http/HttpConnection;
            invokeinterface io.vertx.core.http.HttpConnection.remoteAddress:()Lio/vertx/core/net/SocketAddress;
            areturn
        end local 0 // io.vertx.core.http.HttpServerRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/HttpServerRequest;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.CacheReturn()

  public io.vertx.core.net.SocketAddress localAddress();
    descriptor: ()Lio/vertx/core/net/SocketAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest this
         0: .line 181
            aload 0 /* this */
            invokeinterface io.vertx.core.http.HttpServerRequest.connection:()Lio/vertx/core/http/HttpConnection;
            invokeinterface io.vertx.core.http.HttpConnection.localAddress:()Lio/vertx/core/net/SocketAddress;
            areturn
        end local 0 // io.vertx.core.http.HttpServerRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/HttpServerRequest;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.CacheReturn()

  public javax.net.ssl.SSLSession sslSession();
    descriptor: ()Ljavax/net/ssl/SSLSession;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest this
         0: .line 191
            aload 0 /* this */
            invokeinterface io.vertx.core.http.HttpServerRequest.connection:()Lio/vertx/core/http/HttpConnection;
            invokeinterface io.vertx.core.http.HttpConnection.sslSession:()Ljavax/net/ssl/SSLSession;
            areturn
        end local 0 // io.vertx.core.http.HttpServerRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/HttpServerRequest;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})

  public abstract javax.security.cert.X509Certificate[] peerCertificateChain();
    descriptor: ()[Ljavax/security/cert/X509Certificate;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws javax.net.ssl.SSLPeerUnverifiedException
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN, location=[ARRAY_ELEMENT]
        io.vertx.codegen.annotations.GenIgnore()

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

  public io.vertx.core.http.HttpServerRequest bodyHandler(io.vertx.core.Handler<io.vertx.core.buffer.Buffer>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.HttpServerRequest this
        start local 1 // io.vertx.core.Handler bodyHandler
         0: .line 223
            aload 0 /* this */
            invokeinterface io.vertx.core.http.HttpServerRequest.body:()Lio/vertx/core/Future;
            aload 1 /* bodyHandler */
            invokeinterface io.vertx.core.Future.onSuccess:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 224
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler bodyHandler
        end local 0 // io.vertx.core.http.HttpServerRequest this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/vertx/core/http/HttpServerRequest;
            0    2     1  bodyHandler  Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;)Lio/vertx/core/http/HttpServerRequest;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
             Name  Flags
      bodyHandler  

  public io.vertx.core.http.HttpServerRequest body(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.buffer.Buffer>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.HttpServerRequest this
        start local 1 // io.vertx.core.Handler handler
         0: .line 231
            aload 0 /* this */
            invokeinterface io.vertx.core.http.HttpServerRequest.body:()Lio/vertx/core/Future;
            aload 1 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 232
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.HttpServerRequest this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/HttpServerRequest;
            0    2     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/buffer/Buffer;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/buffer/Buffer;>;>;)Lio/vertx/core/http/HttpServerRequest;
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.core.Future<io.vertx.core.buffer.Buffer> body();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Lio/vertx/core/Future<Lio/vertx/core/buffer/Buffer;>;

  public void end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.HttpServerRequest this
        start local 1 // io.vertx.core.Handler handler
         0: .line 249
            aload 0 /* this */
            invokeinterface io.vertx.core.http.HttpServerRequest.end:()Lio/vertx/core/Future;
            aload 1 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 250
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.HttpServerRequest this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/HttpServerRequest;
            0    2     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.core.Future<java.lang.Void> end();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public void toNetSocket(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.net.NetSocket>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.HttpServerRequest this
        start local 1 // io.vertx.core.Handler handler
         0: .line 284
            aload 0 /* this */
            invokeinterface io.vertx.core.http.HttpServerRequest.toNetSocket:()Lio/vertx/core/Future;
            astore 2 /* fut */
        start local 2 // io.vertx.core.Future fut
         1: .line 285
            aload 1 /* handler */
            ifnull 3
         2: .line 286
            aload 2 /* fut */
            aload 1 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         3: .line 288
      StackMap locals: io.vertx.core.Future
      StackMap stack:
            return
        end local 2 // io.vertx.core.Future fut
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.HttpServerRequest this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/core/http/HttpServerRequest;
            0    4     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/net/NetSocket;>;>;
            1    4     2      fut  Lio/vertx/core/Future<Lio/vertx/core/net/NetSocket;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/net/NetSocket;>;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.core.Future<io.vertx.core.net.NetSocket> toNetSocket();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Lio/vertx/core/Future<Lio/vertx/core/net/NetSocket;>;

  public abstract io.vertx.core.http.HttpServerRequest setExpectMultipart(boolean);
    descriptor: (Z)Lio/vertx/core/http/HttpServerRequest;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
        Name  Flags
      expect  

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

  public abstract io.vertx.core.http.HttpServerRequest uploadHandler(io.vertx.core.Handler<io.vertx.core.http.HttpServerFileUpload>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/http/HttpServerFileUpload;>;)Lio/vertx/core/http/HttpServerRequest;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
               Name  Flags
      uploadHandler  

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

  public abstract java.lang.String getFormAttribute(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
      attributeName  

  public void toWebSocket(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.http.ServerWebSocket>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.HttpServerRequest this
        start local 1 // io.vertx.core.Handler handler
         0: .line 357
            aload 0 /* this */
            invokeinterface io.vertx.core.http.HttpServerRequest.toWebSocket:()Lio/vertx/core/Future;
            astore 2 /* fut */
        start local 2 // io.vertx.core.Future fut
         1: .line 358
            aload 1 /* handler */
            ifnull 3
         2: .line 359
            aload 2 /* fut */
            aload 1 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         3: .line 361
      StackMap locals: io.vertx.core.Future
      StackMap stack:
            return
        end local 2 // io.vertx.core.Future fut
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.HttpServerRequest this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/core/http/HttpServerRequest;
            0    4     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/ServerWebSocket;>;>;
            1    4     2      fut  Lio/vertx/core/Future<Lio/vertx/core/http/ServerWebSocket;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/ServerWebSocket;>;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.core.Future<io.vertx.core.http.ServerWebSocket> toWebSocket();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Lio/vertx/core/Future<Lio/vertx/core/http/ServerWebSocket;>;

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

  public abstract io.vertx.core.http.HttpServerRequest customFrameHandler(io.vertx.core.Handler<io.vertx.core.http.HttpFrame>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/http/HttpFrame;>;)Lio/vertx/core/http/HttpServerRequest;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      handler  

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

  public io.vertx.core.http.StreamPriority streamPriority();
    descriptor: ()Lio/vertx/core/http/StreamPriority;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest this
         0: .line 394
            aconst_null
            areturn
        end local 0 // io.vertx.core.http.HttpServerRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/HttpServerRequest;

  public abstract io.vertx.core.http.HttpServerRequest streamPriorityHandler(io.vertx.core.Handler<io.vertx.core.http.StreamPriority>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/http/StreamPriority;>;)Lio/vertx/core/http/HttpServerRequest;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.http.Cookie getCookie(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/http/Cookie;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.HttpServerRequest this
        start local 1 // java.lang.String name
         0: .line 414
            aload 0 /* this */
            invokeinterface io.vertx.core.http.HttpServerRequest.cookieMap:()Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.core.http.Cookie
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.http.HttpServerRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/HttpServerRequest;
            0    1     1  name  Ljava/lang/String;
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
      Name  Flags
      name  

  public int cookieCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest this
         0: .line 421
            aload 0 /* this */
            invokeinterface io.vertx.core.http.HttpServerRequest.cookieMap:()Ljava/util/Map;
            invokeinterface java.util.Map.size:()I
            ireturn
        end local 0 // io.vertx.core.http.HttpServerRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/HttpServerRequest;

  public abstract java.util.Map<java.lang.String, io.vertx.core.http.Cookie> cookieMap();
    descriptor: ()Ljava/util/Map;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Ljava/util/Map<Ljava/lang/String;Lio/vertx/core/http/Cookie;>;

  public io.vertx.core.http.HttpServerRequest routed(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/http/HttpServerRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.core.http.HttpServerRequest this
        start local 1 // java.lang.String route
         0: .line 437
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String route
        end local 0 // io.vertx.core.http.HttpServerRequest this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/core/http/HttpServerRequest;
            0    1     1  route  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
       Name  Flags
      route  

  public io.vertx.core.streams.ReadStream pause();
    descriptor: ()Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokeinterface io.vertx.core.http.HttpServerRequest.pause:()Lio/vertx/core/http/HttpServerRequest;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream handler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.vertx.core.Handler
            invokeinterface io.vertx.core.http.HttpServerRequest.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream endHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokeinterface io.vertx.core.http.HttpServerRequest.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream resume();
    descriptor: ()Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokeinterface io.vertx.core.http.HttpServerRequest.resume:()Lio/vertx/core/http/HttpServerRequest;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream fetch(long);
    descriptor: (J)Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokeinterface io.vertx.core.http.HttpServerRequest.fetch:(J)Lio/vertx/core/http/HttpServerRequest;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.StreamBase exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/StreamBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokeinterface io.vertx.core.http.HttpServerRequest.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokeinterface io.vertx.core.http.HttpServerRequest.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServerRequest;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Lio/vertx/core/streams/ReadStream<Lio/vertx/core/buffer/Buffer;>;
SourceFile: "HttpServerRequest.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()