public class io.vertx.core.http.RequestOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.http.RequestOptions
  super_class: java.lang.Object
{
  public static final java.lang.String DEFAULT_HOST;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "localhost"

  public static final int DEFAULT_PORT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 80

  public static final java.lang.Boolean DEFAULT_SSL;
    descriptor: Ljava/lang/Boolean;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final java.lang.String DEFAULT_URI;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: ""

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

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

  private java.lang.Boolean ssl;
    descriptor: Ljava/lang/Boolean;
    flags: (0x0002) ACC_PRIVATE

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

  private io.vertx.core.MultiMap headers;
    descriptor: Lio/vertx/core/MultiMap;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 42
            aconst_null
            putstatic io.vertx.core.http.RequestOptions.DEFAULT_SSL:Ljava/lang/Boolean;
         1: .line 47
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.RequestOptions this
         0: .line 58
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 59
            aload 0 /* this */
            ldc "localhost"
            putfield io.vertx.core.http.RequestOptions.host:Ljava/lang/String;
         2: .line 60
            aload 0 /* this */
            bipush 80
            putfield io.vertx.core.http.RequestOptions.port:I
         3: .line 61
            aload 0 /* this */
            getstatic io.vertx.core.http.RequestOptions.DEFAULT_SSL:Ljava/lang/Boolean;
            putfield io.vertx.core.http.RequestOptions.ssl:Ljava/lang/Boolean;
         4: .line 62
            aload 0 /* this */
            ldc ""
            putfield io.vertx.core.http.RequestOptions.uri:Ljava/lang/String;
         5: .line 63
            return
        end local 0 // io.vertx.core.http.RequestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/core/http/RequestOptions;

  public void <init>(io.vertx.core.http.RequestOptions);
    descriptor: (Lio/vertx/core/http/RequestOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.RequestOptions this
        start local 1 // io.vertx.core.http.RequestOptions other
         0: .line 70
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 71
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.http.RequestOptions.host:Ljava/lang/String;
            invokevirtual io.vertx.core.http.RequestOptions.setHost:(Ljava/lang/String;)Lio/vertx/core/http/RequestOptions;
            pop
         2: .line 72
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.http.RequestOptions.port:I
            invokevirtual io.vertx.core.http.RequestOptions.setPort:(I)Lio/vertx/core/http/RequestOptions;
            pop
         3: .line 73
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.http.RequestOptions.ssl:Ljava/lang/Boolean;
            invokevirtual io.vertx.core.http.RequestOptions.setSsl:(Ljava/lang/Boolean;)Lio/vertx/core/http/RequestOptions;
            pop
         4: .line 74
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.http.RequestOptions.uri:Ljava/lang/String;
            invokevirtual io.vertx.core.http.RequestOptions.setURI:(Ljava/lang/String;)Lio/vertx/core/http/RequestOptions;
            pop
         5: .line 76
            return
        end local 1 // io.vertx.core.http.RequestOptions other
        end local 0 // io.vertx.core.http.RequestOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/vertx/core/http/RequestOptions;
            0    6     1  other  Lio/vertx/core/http/RequestOptions;
    MethodParameters:
       Name  Flags
      other  

  public void <init>(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.RequestOptions this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 83
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 84
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.core.http.RequestOptionsConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/core/http/RequestOptions;)V
         2: .line 85
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.core.http.RequestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/RequestOptions;
            0    3     1  json  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      json  

  public java.lang.String getHost();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.RequestOptions this
         0: .line 93
            aload 0 /* this */
            getfield io.vertx.core.http.RequestOptions.host:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.RequestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/RequestOptions;

  public io.vertx.core.http.RequestOptions setHost(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/http/RequestOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.RequestOptions this
        start local 1 // java.lang.String host
         0: .line 102
            aload 0 /* this */
            aload 1 /* host */
            putfield io.vertx.core.http.RequestOptions.host:Ljava/lang/String;
         1: .line 103
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String host
        end local 0 // io.vertx.core.http.RequestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/RequestOptions;
            0    2     1  host  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      host  

  public int getPort();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.RequestOptions this
         0: .line 112
            aload 0 /* this */
            getfield io.vertx.core.http.RequestOptions.port:I
            ireturn
        end local 0 // io.vertx.core.http.RequestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/RequestOptions;

  public io.vertx.core.http.RequestOptions setPort(int);
    descriptor: (I)Lio/vertx/core/http/RequestOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.RequestOptions this
        start local 1 // int port
         0: .line 121
            aload 0 /* this */
            iload 1 /* port */
            putfield io.vertx.core.http.RequestOptions.port:I
         1: .line 122
            aload 0 /* this */
            areturn
        end local 1 // int port
        end local 0 // io.vertx.core.http.RequestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/RequestOptions;
            0    2     1  port  I
    MethodParameters:
      Name  Flags
      port  

  public java.lang.Boolean isSsl();
    descriptor: ()Ljava/lang/Boolean;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.RequestOptions this
         0: .line 129
            aload 0 /* this */
            getfield io.vertx.core.http.RequestOptions.ssl:Ljava/lang/Boolean;
            areturn
        end local 0 // io.vertx.core.http.RequestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/RequestOptions;

  public io.vertx.core.http.RequestOptions setSsl(java.lang.Boolean);
    descriptor: (Ljava/lang/Boolean;)Lio/vertx/core/http/RequestOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.RequestOptions this
        start local 1 // java.lang.Boolean ssl
         0: .line 139
            aload 0 /* this */
            aload 1 /* ssl */
            putfield io.vertx.core.http.RequestOptions.ssl:Ljava/lang/Boolean;
         1: .line 140
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Boolean ssl
        end local 0 // io.vertx.core.http.RequestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/RequestOptions;
            0    2     1   ssl  Ljava/lang/Boolean;
    MethodParameters:
      Name  Flags
      ssl   

  public java.lang.String getURI();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.RequestOptions this
         0: .line 147
            aload 0 /* this */
            getfield io.vertx.core.http.RequestOptions.uri:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.RequestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/RequestOptions;

  public io.vertx.core.http.RequestOptions setURI(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/http/RequestOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.RequestOptions this
        start local 1 // java.lang.String uri
         0: .line 157
            aload 0 /* this */
            aload 1 /* uri */
            putfield io.vertx.core.http.RequestOptions.uri:Ljava/lang/String;
         1: .line 158
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String uri
        end local 0 // io.vertx.core.http.RequestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/RequestOptions;
            0    2     1   uri  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      uri   

  public io.vertx.core.http.RequestOptions addHeader(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/RequestOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.http.RequestOptions this
        start local 1 // java.lang.String key
        start local 2 // java.lang.String value
         0: .line 169
            aload 0 /* this */
            invokevirtual io.vertx.core.http.RequestOptions.checkHeaders:()V
         1: .line 170
            aload 1 /* key */
            ldc "no null key accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 171
            aload 2 /* value */
            ldc "no null value accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         3: .line 172
            aload 0 /* this */
            getfield io.vertx.core.http.RequestOptions.headers:Lio/vertx/core/MultiMap;
            aload 1 /* key */
            aload 2 /* value */
            invokeinterface io.vertx.core.MultiMap.add:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            pop
         4: .line 173
            aload 0 /* this */
            areturn
        end local 2 // java.lang.String value
        end local 1 // java.lang.String key
        end local 0 // io.vertx.core.http.RequestOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lio/vertx/core/http/RequestOptions;
            0    5     1    key  Ljava/lang/String;
            0    5     2  value  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      key    
      value  

  public io.vertx.core.http.RequestOptions setHeaders(io.vertx.core.MultiMap);
    descriptor: (Lio/vertx/core/MultiMap;)Lio/vertx/core/http/RequestOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.RequestOptions this
        start local 1 // io.vertx.core.MultiMap headers
         0: .line 184
            aload 0 /* this */
            aload 1 /* headers */
            putfield io.vertx.core.http.RequestOptions.headers:Lio/vertx/core/MultiMap;
         1: .line 185
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.MultiMap headers
        end local 0 // io.vertx.core.http.RequestOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/RequestOptions;
            0    2     1  headers  Lio/vertx/core/MultiMap;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore()
    MethodParameters:
         Name  Flags
      headers  

  public io.vertx.core.MultiMap getHeaders();
    descriptor: ()Lio/vertx/core/MultiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.RequestOptions this
         0: .line 195
            aload 0 /* this */
            getfield io.vertx.core.http.RequestOptions.headers:Lio/vertx/core/MultiMap;
            areturn
        end local 0 // io.vertx.core.http.RequestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/RequestOptions;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore()

  private void checkHeaders();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.http.RequestOptions this
         0: .line 199
            aload 0 /* this */
            getfield io.vertx.core.http.RequestOptions.headers:Lio/vertx/core/MultiMap;
            ifnonnull 2
         1: .line 200
            aload 0 /* this */
            new io.vertx.core.http.CaseInsensitiveHeaders
            dup
            invokespecial io.vertx.core.http.CaseInsensitiveHeaders.<init>:()V
            putfield io.vertx.core.http.RequestOptions.headers:Lio/vertx/core/MultiMap;
         2: .line 202
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.RequestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/RequestOptions;

  public io.vertx.core.json.JsonObject toJson();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.RequestOptions this
         0: .line 205
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 1 /* json */
        start local 1 // io.vertx.core.json.JsonObject json
         1: .line 206
            aload 0 /* this */
            aload 1 /* json */
            invokestatic io.vertx.core.http.RequestOptionsConverter.toJson:(Lio/vertx/core/http/RequestOptions;Lio/vertx/core/json/JsonObject;)V
         2: .line 207
            aload 1 /* json */
            areturn
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.core.http.RequestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/RequestOptions;
            1    3     1  json  Lio/vertx/core/json/JsonObject;
}
SourceFile: "RequestOptions.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true)