class org.springframework.http.server.reactive.UndertowServerHttpRequest extends org.springframework.http.server.reactive.AbstractServerHttpRequest
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.springframework.http.server.reactive.UndertowServerHttpRequest
  super_class: org.springframework.http.server.reactive.AbstractServerHttpRequest
{
  private final io.undertow.server.HttpServerExchange exchange;
    descriptor: Lio/undertow/server/HttpServerExchange;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.springframework.http.server.reactive.UndertowServerHttpRequest$RequestBodyPublisher body;
    descriptor: Lorg/springframework/http/server/reactive/UndertowServerHttpRequest$RequestBodyPublisher;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(io.undertow.server.HttpServerExchange, org.springframework.core.io.buffer.DataBufferFactory);
    descriptor: (Lio/undertow/server/HttpServerExchange;Lorg/springframework/core/io/buffer/DataBufferFactory;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // org.springframework.http.server.reactive.UndertowServerHttpRequest this
        start local 1 // io.undertow.server.HttpServerExchange exchange
        start local 2 // org.springframework.core.io.buffer.DataBufferFactory bufferFactory
         0: .line 67
            aload 0 /* this */
            aload 1 /* exchange */
            invokestatic org.springframework.http.server.reactive.UndertowServerHttpRequest.initUri:(Lio/undertow/server/HttpServerExchange;)Ljava/net/URI;
            ldc ""
            aload 1 /* exchange */
            invokestatic org.springframework.http.server.reactive.UndertowServerHttpRequest.initHeaders:(Lio/undertow/server/HttpServerExchange;)Lorg/springframework/http/HttpHeaders;
            invokespecial org.springframework.http.server.reactive.AbstractServerHttpRequest.<init>:(Ljava/net/URI;Ljava/lang/String;Lorg/springframework/http/HttpHeaders;)V
         1: .line 68
            aload 0 /* this */
            aload 1 /* exchange */
            putfield org.springframework.http.server.reactive.UndertowServerHttpRequest.exchange:Lio/undertow/server/HttpServerExchange;
         2: .line 69
            aload 0 /* this */
            new org.springframework.http.server.reactive.UndertowServerHttpRequest$RequestBodyPublisher
            dup
            aload 0 /* this */
            aload 1 /* exchange */
            aload 2 /* bufferFactory */
            invokespecial org.springframework.http.server.reactive.UndertowServerHttpRequest$RequestBodyPublisher.<init>:(Lorg/springframework/http/server/reactive/UndertowServerHttpRequest;Lio/undertow/server/HttpServerExchange;Lorg/springframework/core/io/buffer/DataBufferFactory;)V
            putfield org.springframework.http.server.reactive.UndertowServerHttpRequest.body:Lorg/springframework/http/server/reactive/UndertowServerHttpRequest$RequestBodyPublisher;
         3: .line 70
            aload 0 /* this */
            getfield org.springframework.http.server.reactive.UndertowServerHttpRequest.body:Lorg/springframework/http/server/reactive/UndertowServerHttpRequest$RequestBodyPublisher;
            aload 1 /* exchange */
            invokevirtual org.springframework.http.server.reactive.UndertowServerHttpRequest$RequestBodyPublisher.registerListeners:(Lio/undertow/server/HttpServerExchange;)V
         4: .line 71
            return
        end local 2 // org.springframework.core.io.buffer.DataBufferFactory bufferFactory
        end local 1 // io.undertow.server.HttpServerExchange exchange
        end local 0 // org.springframework.http.server.reactive.UndertowServerHttpRequest this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/springframework/http/server/reactive/UndertowServerHttpRequest;
            0    5     1       exchange  Lio/undertow/server/HttpServerExchange;
            0    5     2  bufferFactory  Lorg/springframework/core/io/buffer/DataBufferFactory;
    Exceptions:
      throws java.net.URISyntaxException
    MethodParameters:
               Name  Flags
      exchange       
      bufferFactory  

  private static java.net.URI initUri(io.undertow.server.HttpServerExchange);
    descriptor: (Lio/undertow/server/HttpServerExchange;)Ljava/net/URI;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // io.undertow.server.HttpServerExchange exchange
         0: .line 74
            aload 0 /* exchange */
            ldc "HttpServerExchange is required."
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         1: .line 75
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestURL:()Ljava/lang/String;
            astore 1 /* requestURL */
        start local 1 // java.lang.String requestURL
         2: .line 76
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getQueryString:()Ljava/lang/String;
            astore 2 /* query */
        start local 2 // java.lang.String query
         3: .line 77
            aload 2 /* query */
            invokestatic org.springframework.util.StringUtils.isEmpty:(Ljava/lang/Object;)Z
            ifeq 4
            aload 1 /* requestURL */
            goto 5
      StackMap locals: java.lang.String java.lang.String
      StackMap stack:
         4: new java.lang.StringBuilder
            dup
            aload 1 /* requestURL */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "?"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* query */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
         5: astore 3 /* requestUriAndQuery */
        start local 3 // java.lang.String requestUriAndQuery
         6: .line 78
            new java.net.URI
            dup
            aload 3 /* requestUriAndQuery */
            invokespecial java.net.URI.<init>:(Ljava/lang/String;)V
            areturn
        end local 3 // java.lang.String requestUriAndQuery
        end local 2 // java.lang.String query
        end local 1 // java.lang.String requestURL
        end local 0 // io.undertow.server.HttpServerExchange exchange
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    7     0            exchange  Lio/undertow/server/HttpServerExchange;
            2    7     1          requestURL  Ljava/lang/String;
            3    7     2               query  Ljava/lang/String;
            6    7     3  requestUriAndQuery  Ljava/lang/String;
    Exceptions:
      throws java.net.URISyntaxException
    MethodParameters:
          Name  Flags
      exchange  

  private static org.springframework.http.HttpHeaders initHeaders(io.undertow.server.HttpServerExchange);
    descriptor: (Lio/undertow/server/HttpServerExchange;)Lorg/springframework/http/HttpHeaders;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.undertow.server.HttpServerExchange exchange
         0: .line 83
            new org.springframework.http.server.reactive.UndertowHeadersAdapter
            dup
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            invokespecial org.springframework.http.server.reactive.UndertowHeadersAdapter.<init>:(Lio/undertow/util/HeaderMap;)V
         1: .line 82
            astore 1 /* headersMap */
        start local 1 // org.springframework.http.server.reactive.UndertowHeadersAdapter headersMap
         2: .line 84
            new org.springframework.http.HttpHeaders
            dup
            aload 1 /* headersMap */
            invokespecial org.springframework.http.HttpHeaders.<init>:(Lorg/springframework/util/MultiValueMap;)V
            areturn
        end local 1 // org.springframework.http.server.reactive.UndertowHeadersAdapter headersMap
        end local 0 // io.undertow.server.HttpServerExchange exchange
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0    exchange  Lio/undertow/server/HttpServerExchange;
            2    3     1  headersMap  Lorg/springframework/http/server/reactive/UndertowHeadersAdapter;
    MethodParameters:
          Name  Flags
      exchange  

  public java.lang.String getMethodValue();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.http.server.reactive.UndertowServerHttpRequest this
         0: .line 89
            aload 0 /* this */
            getfield org.springframework.http.server.reactive.UndertowServerHttpRequest.exchange:Lio/undertow/server/HttpServerExchange;
            invokevirtual io.undertow.server.HttpServerExchange.getRequestMethod:()Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HttpString.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.springframework.http.server.reactive.UndertowServerHttpRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/http/server/reactive/UndertowServerHttpRequest;

  protected org.springframework.util.MultiValueMap<java.lang.String, org.springframework.http.HttpCookie> initCookies();
    descriptor: ()Lorg/springframework/util/MultiValueMap;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // org.springframework.http.server.reactive.UndertowServerHttpRequest this
         0: .line 94
            new org.springframework.util.LinkedMultiValueMap
            dup
            invokespecial org.springframework.util.LinkedMultiValueMap.<init>:()V
            astore 1 /* cookies */
        start local 1 // org.springframework.util.MultiValueMap cookies
         1: .line 95
            aload 0 /* this */
            getfield org.springframework.http.server.reactive.UndertowServerHttpRequest.exchange:Lio/undertow/server/HttpServerExchange;
            invokevirtual io.undertow.server.HttpServerExchange.getRequestCookies:()Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3
            goto 6
      StackMap locals: org.springframework.http.server.reactive.UndertowServerHttpRequest org.springframework.util.MultiValueMap top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 2 /* name */
        start local 2 // java.lang.String name
         3: .line 96
            aload 0 /* this */
            getfield org.springframework.http.server.reactive.UndertowServerHttpRequest.exchange:Lio/undertow/server/HttpServerExchange;
            invokevirtual io.undertow.server.HttpServerExchange.getRequestCookies:()Ljava/util/Map;
            aload 2 /* name */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.undertow.server.handlers.Cookie
            astore 4 /* cookie */
        start local 4 // io.undertow.server.handlers.Cookie cookie
         4: .line 97
            new org.springframework.http.HttpCookie
            dup
            aload 2 /* name */
            aload 4 /* cookie */
            invokeinterface io.undertow.server.handlers.Cookie.getValue:()Ljava/lang/String;
            invokespecial org.springframework.http.HttpCookie.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            astore 5 /* httpCookie */
        start local 5 // org.springframework.http.HttpCookie httpCookie
         5: .line 98
            aload 1 /* cookies */
            aload 2 /* name */
            aload 5 /* httpCookie */
            invokeinterface org.springframework.util.MultiValueMap.add:(Ljava/lang/Object;Ljava/lang/Object;)V
        end local 5 // org.springframework.http.HttpCookie httpCookie
        end local 4 // io.undertow.server.handlers.Cookie cookie
        end local 2 // java.lang.String name
         6: .line 95
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         7: .line 100
            aload 1 /* cookies */
            areturn
        end local 1 // org.springframework.util.MultiValueMap cookies
        end local 0 // org.springframework.http.server.reactive.UndertowServerHttpRequest this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lorg/springframework/http/server/reactive/UndertowServerHttpRequest;
            1    8     1     cookies  Lorg/springframework/util/MultiValueMap<Ljava/lang/String;Lorg/springframework/http/HttpCookie;>;
            3    6     2        name  Ljava/lang/String;
            4    6     4      cookie  Lio/undertow/server/handlers/Cookie;
            5    6     5  httpCookie  Lorg/springframework/http/HttpCookie;
    Signature: ()Lorg/springframework/util/MultiValueMap<Ljava/lang/String;Lorg/springframework/http/HttpCookie;>;

  public java.net.InetSocketAddress getRemoteAddress();
    descriptor: ()Ljava/net/InetSocketAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.http.server.reactive.UndertowServerHttpRequest this
         0: .line 105
            aload 0 /* this */
            getfield org.springframework.http.server.reactive.UndertowServerHttpRequest.exchange:Lio/undertow/server/HttpServerExchange;
            invokevirtual io.undertow.server.HttpServerExchange.getSourceAddress:()Ljava/net/InetSocketAddress;
            areturn
        end local 0 // org.springframework.http.server.reactive.UndertowServerHttpRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/http/server/reactive/UndertowServerHttpRequest;

  protected org.springframework.http.server.reactive.SslInfo initSslInfo();
    descriptor: ()Lorg/springframework/http/server/reactive/SslInfo;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.springframework.http.server.reactive.UndertowServerHttpRequest this
         0: .line 111
            aload 0 /* this */
            getfield org.springframework.http.server.reactive.UndertowServerHttpRequest.exchange:Lio/undertow/server/HttpServerExchange;
            invokevirtual io.undertow.server.HttpServerExchange.getConnection:()Lio/undertow/server/ServerConnection;
            invokevirtual io.undertow.server.ServerConnection.getSslSession:()Ljavax/net/ssl/SSLSession;
            astore 1 /* session */
        start local 1 // javax.net.ssl.SSLSession session
         1: .line 112
            aload 1 /* session */
            ifnull 3
         2: .line 113
            new org.springframework.http.server.reactive.DefaultSslInfo
            dup
            aload 1 /* session */
            invokespecial org.springframework.http.server.reactive.DefaultSslInfo.<init>:(Ljavax/net/ssl/SSLSession;)V
            areturn
         3: .line 115
      StackMap locals: javax.net.ssl.SSLSession
      StackMap stack:
            aconst_null
            areturn
        end local 1 // javax.net.ssl.SSLSession session
        end local 0 // org.springframework.http.server.reactive.UndertowServerHttpRequest this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/springframework/http/server/reactive/UndertowServerHttpRequest;
            1    4     1  session  Ljavax/net/ssl/SSLSession;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public reactor.core.publisher.Flux<org.springframework.core.io.buffer.DataBuffer> getBody();
    descriptor: ()Lreactor/core/publisher/Flux;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.http.server.reactive.UndertowServerHttpRequest this
         0: .line 120
            aload 0 /* this */
            getfield org.springframework.http.server.reactive.UndertowServerHttpRequest.body:Lorg/springframework/http/server/reactive/UndertowServerHttpRequest$RequestBodyPublisher;
            invokestatic reactor.core.publisher.Flux.from:(Lorg/reactivestreams/Publisher;)Lreactor/core/publisher/Flux;
            areturn
        end local 0 // org.springframework.http.server.reactive.UndertowServerHttpRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/http/server/reactive/UndertowServerHttpRequest;
    Signature: ()Lreactor/core/publisher/Flux<Lorg/springframework/core/io/buffer/DataBuffer;>;

  public <T> T getNativeRequest();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.http.server.reactive.UndertowServerHttpRequest this
         0: .line 126
            aload 0 /* this */
            getfield org.springframework.http.server.reactive.UndertowServerHttpRequest.exchange:Lio/undertow/server/HttpServerExchange;
            areturn
        end local 0 // org.springframework.http.server.reactive.UndertowServerHttpRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/http/server/reactive/UndertowServerHttpRequest;
    Signature: <T:Ljava/lang/Object;>()TT;

  protected java.lang.String initId();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.http.server.reactive.UndertowServerHttpRequest this
         0: .line 131
            aload 0 /* this */
            getfield org.springframework.http.server.reactive.UndertowServerHttpRequest.exchange:Lio/undertow/server/HttpServerExchange;
            invokevirtual io.undertow.server.HttpServerExchange.getConnection:()Lio/undertow/server/ServerConnection;
            invokestatic org.springframework.util.ObjectUtils.getIdentityHexString:(Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 0 // org.springframework.http.server.reactive.UndertowServerHttpRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/http/server/reactive/UndertowServerHttpRequest;
}
SourceFile: "UndertowServerHttpRequest.java"
NestMembers:
  org.springframework.http.server.reactive.UndertowServerHttpRequest$RequestBodyPublisher  org.springframework.http.server.reactive.UndertowServerHttpRequest$UndertowDataBuffer
InnerClasses:
  private RequestBodyPublisher = org.springframework.http.server.reactive.UndertowServerHttpRequest$RequestBodyPublisher of org.springframework.http.server.reactive.UndertowServerHttpRequest
  private UndertowDataBuffer = org.springframework.http.server.reactive.UndertowServerHttpRequest$UndertowDataBuffer of org.springframework.http.server.reactive.UndertowServerHttpRequest