public class io.vertx.ext.shell.term.HttpTermOptions extends io.vertx.core.http.HttpServerOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.shell.term.HttpTermOptions
  super_class: io.vertx.core.http.HttpServerOptions
{
  public static final java.lang.String DEFAULT_CHARSET;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final java.lang.String DEFAULT_INPUTRC;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "/io/vertx/ext/shell/inputrc"

  private static final java.lang.String DEFAULT_SOCKJSPATH;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "/shell/*"

  private io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions sockJSHandlerOptions;
    descriptor: Lio/vertx/ext/web/handler/sockjs/SockJSHandlerOptions;
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.json.JsonObject authOptions;
    descriptor: Lio/vertx/core/json/JsonObject;
    flags: (0x0002) ACC_PRIVATE

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

  private io.vertx.core.buffer.Buffer vertsShellJsResource;
    descriptor: Lio/vertx/core/buffer/Buffer;
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.buffer.Buffer termJsResource;
    descriptor: Lio/vertx/core/buffer/Buffer;
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.buffer.Buffer shellHtmlResource;
    descriptor: Lio/vertx/core/buffer/Buffer;
    flags: (0x0002) ACC_PRIVATE

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 58
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokevirtual java.nio.charset.Charset.name:()Ljava/lang/String;
            putstatic io.vertx.ext.shell.term.HttpTermOptions.DEFAULT_CHARSET:Ljava/lang/String;
         1: .line 82
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static io.vertx.core.buffer.Buffer defaultVertxShellJsResource();
    descriptor: ()Lio/vertx/core/buffer/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 65
            ldc "/io/vertx/ext/shell/vertxshell.js"
            invokestatic io.vertx.ext.shell.term.impl.Helper.loadResource:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static io.vertx.core.buffer.Buffer defaultTermJsResource();
    descriptor: ()Lio/vertx/core/buffer/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 72
            ldc "/io/vertx/ext/shell/term.js"
            invokestatic io.vertx.ext.shell.term.impl.Helper.loadResource:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static io.vertx.core.buffer.Buffer defaultShellHtmlResource();
    descriptor: ()Lio/vertx/core/buffer/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 79
            ldc "/io/vertx/ext/shell/shell.html"
            invokestatic io.vertx.ext.shell.term.impl.Helper.loadResource:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
         0: .line 93
            aload 0 /* this */
            invokespecial io.vertx.core.http.HttpServerOptions.<init>:()V
         1: .line 94
            aload 0 /* this */
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.init:()V
         2: .line 95
            return
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/shell/term/HttpTermOptions;

  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.ext.shell.term.HttpTermOptions this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 98
            aload 0 /* this */
            aload 1 /* json */
            invokespecial io.vertx.core.http.HttpServerOptions.<init>:(Lio/vertx/core/json/JsonObject;)V
         1: .line 99
            aload 0 /* this */
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.init:()V
         2: .line 100
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.ext.shell.term.HttpTermOptionsConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/ext/shell/term/HttpTermOptions;)V
         3: .line 101
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    4     1  json  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      json  

  public void <init>(io.vertx.ext.shell.term.HttpTermOptions);
    descriptor: (Lio/vertx/ext/shell/term/HttpTermOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // io.vertx.ext.shell.term.HttpTermOptions that
         0: .line 103
            aload 0 /* this */
            invokespecial io.vertx.core.http.HttpServerOptions.<init>:()V
         1: .line 104
            aload 0 /* this */
            new io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions
            dup
            aload 1 /* that */
            getfield io.vertx.ext.shell.term.HttpTermOptions.sockJSHandlerOptions:Lio/vertx/ext/web/handler/sockjs/SockJSHandlerOptions;
            invokespecial io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions.<init>:(Lio/vertx/ext/web/handler/sockjs/SockJSHandlerOptions;)V
            putfield io.vertx.ext.shell.term.HttpTermOptions.sockJSHandlerOptions:Lio/vertx/ext/web/handler/sockjs/SockJSHandlerOptions;
         2: .line 105
            aload 0 /* this */
            aload 1 /* that */
            getfield io.vertx.ext.shell.term.HttpTermOptions.sockJSPath:Ljava/lang/String;
            putfield io.vertx.ext.shell.term.HttpTermOptions.sockJSPath:Ljava/lang/String;
         3: .line 106
            aload 0 /* this */
            aload 1 /* that */
            getfield io.vertx.ext.shell.term.HttpTermOptions.vertsShellJsResource:Lio/vertx/core/buffer/Buffer;
            ifnull 4
            aload 1 /* that */
            getfield io.vertx.ext.shell.term.HttpTermOptions.vertsShellJsResource:Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.buffer.Buffer.copy:()Lio/vertx/core/buffer/Buffer;
            goto 5
      StackMap locals: io.vertx.ext.shell.term.HttpTermOptions io.vertx.ext.shell.term.HttpTermOptions
      StackMap stack: io.vertx.ext.shell.term.HttpTermOptions
         4: aconst_null
      StackMap locals: io.vertx.ext.shell.term.HttpTermOptions io.vertx.ext.shell.term.HttpTermOptions
      StackMap stack: io.vertx.ext.shell.term.HttpTermOptions io.vertx.core.buffer.Buffer
         5: putfield io.vertx.ext.shell.term.HttpTermOptions.vertsShellJsResource:Lio/vertx/core/buffer/Buffer;
         6: .line 107
            aload 0 /* this */
            aload 1 /* that */
            getfield io.vertx.ext.shell.term.HttpTermOptions.termJsResource:Lio/vertx/core/buffer/Buffer;
            ifnull 7
            aload 1 /* that */
            getfield io.vertx.ext.shell.term.HttpTermOptions.termJsResource:Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.buffer.Buffer.copy:()Lio/vertx/core/buffer/Buffer;
            goto 8
      StackMap locals:
      StackMap stack: io.vertx.ext.shell.term.HttpTermOptions
         7: aconst_null
      StackMap locals: io.vertx.ext.shell.term.HttpTermOptions io.vertx.ext.shell.term.HttpTermOptions
      StackMap stack: io.vertx.ext.shell.term.HttpTermOptions io.vertx.core.buffer.Buffer
         8: putfield io.vertx.ext.shell.term.HttpTermOptions.termJsResource:Lio/vertx/core/buffer/Buffer;
         9: .line 108
            aload 0 /* this */
            aload 1 /* that */
            getfield io.vertx.ext.shell.term.HttpTermOptions.shellHtmlResource:Lio/vertx/core/buffer/Buffer;
            ifnull 10
            aload 1 /* that */
            getfield io.vertx.ext.shell.term.HttpTermOptions.shellHtmlResource:Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.buffer.Buffer.copy:()Lio/vertx/core/buffer/Buffer;
            goto 11
      StackMap locals:
      StackMap stack: io.vertx.ext.shell.term.HttpTermOptions
        10: aconst_null
      StackMap locals: io.vertx.ext.shell.term.HttpTermOptions io.vertx.ext.shell.term.HttpTermOptions
      StackMap stack: io.vertx.ext.shell.term.HttpTermOptions io.vertx.core.buffer.Buffer
        11: putfield io.vertx.ext.shell.term.HttpTermOptions.shellHtmlResource:Lio/vertx/core/buffer/Buffer;
        12: .line 109
            aload 0 /* this */
            aload 1 /* that */
            getfield io.vertx.ext.shell.term.HttpTermOptions.authOptions:Lio/vertx/core/json/JsonObject;
            ifnull 13
            aload 1 /* that */
            getfield io.vertx.ext.shell.term.HttpTermOptions.authOptions:Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.copy:()Lio/vertx/core/json/JsonObject;
            goto 14
      StackMap locals:
      StackMap stack: io.vertx.ext.shell.term.HttpTermOptions
        13: aconst_null
      StackMap locals: io.vertx.ext.shell.term.HttpTermOptions io.vertx.ext.shell.term.HttpTermOptions
      StackMap stack: io.vertx.ext.shell.term.HttpTermOptions io.vertx.core.json.JsonObject
        14: putfield io.vertx.ext.shell.term.HttpTermOptions.authOptions:Lio/vertx/core/json/JsonObject;
        15: .line 110
            aload 0 /* this */
            aload 1 /* that */
            getfield io.vertx.ext.shell.term.HttpTermOptions.charset:Ljava/lang/String;
            putfield io.vertx.ext.shell.term.HttpTermOptions.charset:Ljava/lang/String;
        16: .line 111
            aload 0 /* this */
            aload 1 /* that */
            getfield io.vertx.ext.shell.term.HttpTermOptions.intputrc:Ljava/lang/String;
            putfield io.vertx.ext.shell.term.HttpTermOptions.intputrc:Ljava/lang/String;
        17: .line 112
            return
        end local 1 // io.vertx.ext.shell.term.HttpTermOptions that
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0   18     1  that  Lio/vertx/ext/shell/term/HttpTermOptions;
    MethodParameters:
      Name  Flags
      that  

  private void init();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
         0: .line 115
            aload 0 /* this */
            new io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions
            dup
            invokespecial io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions.<init>:()V
            putfield io.vertx.ext.shell.term.HttpTermOptions.sockJSHandlerOptions:Lio/vertx/ext/web/handler/sockjs/SockJSHandlerOptions;
         1: .line 116
            aload 0 /* this */
            ldc "/shell/*"
            putfield io.vertx.ext.shell.term.HttpTermOptions.sockJSPath:Ljava/lang/String;
         2: .line 117
            aload 0 /* this */
            invokestatic io.vertx.ext.shell.term.HttpTermOptions.defaultVertxShellJsResource:()Lio/vertx/core/buffer/Buffer;
            putfield io.vertx.ext.shell.term.HttpTermOptions.vertsShellJsResource:Lio/vertx/core/buffer/Buffer;
         3: .line 118
            aload 0 /* this */
            invokestatic io.vertx.ext.shell.term.HttpTermOptions.defaultTermJsResource:()Lio/vertx/core/buffer/Buffer;
            putfield io.vertx.ext.shell.term.HttpTermOptions.termJsResource:Lio/vertx/core/buffer/Buffer;
         4: .line 119
            aload 0 /* this */
            invokestatic io.vertx.ext.shell.term.HttpTermOptions.defaultShellHtmlResource:()Lio/vertx/core/buffer/Buffer;
            putfield io.vertx.ext.shell.term.HttpTermOptions.shellHtmlResource:Lio/vertx/core/buffer/Buffer;
         5: .line 120
            aload 0 /* this */
            getstatic io.vertx.ext.shell.term.HttpTermOptions.DEFAULT_CHARSET:Ljava/lang/String;
            putfield io.vertx.ext.shell.term.HttpTermOptions.charset:Ljava/lang/String;
         6: .line 121
            aload 0 /* this */
            ldc "/io/vertx/ext/shell/inputrc"
            putfield io.vertx.ext.shell.term.HttpTermOptions.intputrc:Ljava/lang/String;
         7: .line 122
            return
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/vertx/ext/shell/term/HttpTermOptions;

  public io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions getSockJSHandlerOptions();
    descriptor: ()Lio/vertx/ext/web/handler/sockjs/SockJSHandlerOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
         0: .line 128
            aload 0 /* this */
            getfield io.vertx.ext.shell.term.HttpTermOptions.sockJSHandlerOptions:Lio/vertx/ext/web/handler/sockjs/SockJSHandlerOptions;
            areturn
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/term/HttpTermOptions;

  public io.vertx.ext.shell.term.HttpTermOptions setSockJSHandlerOptions(io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions);
    descriptor: (Lio/vertx/ext/web/handler/sockjs/SockJSHandlerOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions sockJSHandlerOptions
         0: .line 138
            aload 0 /* this */
            aload 1 /* sockJSHandlerOptions */
            putfield io.vertx.ext.shell.term.HttpTermOptions.sockJSHandlerOptions:Lio/vertx/ext/web/handler/sockjs/SockJSHandlerOptions;
         1: .line 139
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.ext.web.handler.sockjs.SockJSHandlerOptions sockJSHandlerOptions
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    2     1  sockJSHandlerOptions  Lio/vertx/ext/web/handler/sockjs/SockJSHandlerOptions;
    MethodParameters:
                      Name  Flags
      sockJSHandlerOptions  

  public java.lang.String getSockJSPath();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
         0: .line 146
            aload 0 /* this */
            getfield io.vertx.ext.shell.term.HttpTermOptions.sockJSPath:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/term/HttpTermOptions;

  public io.vertx.ext.shell.term.HttpTermOptions setSockJSPath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // java.lang.String sockJSPath
         0: .line 156
            aload 0 /* this */
            aload 1 /* sockJSPath */
            putfield io.vertx.ext.shell.term.HttpTermOptions.sockJSPath:Ljava/lang/String;
         1: .line 157
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String sockJSPath
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    2     1  sockJSPath  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      sockJSPath  

  public io.vertx.core.json.JsonObject getAuthOptions();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
         0: .line 164
            aload 0 /* this */
            getfield io.vertx.ext.shell.term.HttpTermOptions.authOptions:Lio/vertx/core/json/JsonObject;
            areturn
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/term/HttpTermOptions;

  public io.vertx.ext.shell.term.HttpTermOptions setAuthOptions(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // io.vertx.core.json.JsonObject authOptions
         0: .line 174
            aload 0 /* this */
            aload 1 /* authOptions */
            putfield io.vertx.ext.shell.term.HttpTermOptions.authOptions:Lio/vertx/core/json/JsonObject;
         1: .line 175
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.json.JsonObject authOptions
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    2     1  authOptions  Lio/vertx/core/json/JsonObject;
    MethodParameters:
             Name  Flags
      authOptions  

  public io.vertx.ext.shell.term.HttpTermOptions setSendBufferSize(int);
    descriptor: (I)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // int sendBufferSize
         0: .line 180
            aload 0 /* this */
            iload 1 /* sendBufferSize */
            invokespecial io.vertx.core.http.HttpServerOptions.setSendBufferSize:(I)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // int sendBufferSize
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  sendBufferSize  I
    MethodParameters:
                Name  Flags
      sendBufferSize  

  public io.vertx.ext.shell.term.HttpTermOptions setReceiveBufferSize(int);
    descriptor: (I)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // int receiveBufferSize
         0: .line 185
            aload 0 /* this */
            iload 1 /* receiveBufferSize */
            invokespecial io.vertx.core.http.HttpServerOptions.setReceiveBufferSize:(I)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // int receiveBufferSize
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0               this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  receiveBufferSize  I
    MethodParameters:
                   Name  Flags
      receiveBufferSize  

  public io.vertx.ext.shell.term.HttpTermOptions setReuseAddress(boolean);
    descriptor: (Z)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // boolean reuseAddress
         0: .line 190
            aload 0 /* this */
            iload 1 /* reuseAddress */
            invokespecial io.vertx.core.http.HttpServerOptions.setReuseAddress:(Z)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // boolean reuseAddress
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  reuseAddress  Z
    MethodParameters:
              Name  Flags
      reuseAddress  

  public io.vertx.ext.shell.term.HttpTermOptions setTrafficClass(int);
    descriptor: (I)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // int trafficClass
         0: .line 195
            aload 0 /* this */
            iload 1 /* trafficClass */
            invokespecial io.vertx.core.http.HttpServerOptions.setTrafficClass:(I)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // int trafficClass
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  trafficClass  I
    MethodParameters:
              Name  Flags
      trafficClass  

  public io.vertx.ext.shell.term.HttpTermOptions setTcpNoDelay(boolean);
    descriptor: (Z)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // boolean tcpNoDelay
         0: .line 200
            aload 0 /* this */
            iload 1 /* tcpNoDelay */
            invokespecial io.vertx.core.http.HttpServerOptions.setTcpNoDelay:(Z)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // boolean tcpNoDelay
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  tcpNoDelay  Z
    MethodParameters:
            Name  Flags
      tcpNoDelay  

  public io.vertx.ext.shell.term.HttpTermOptions setTcpKeepAlive(boolean);
    descriptor: (Z)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // boolean tcpKeepAlive
         0: .line 205
            aload 0 /* this */
            iload 1 /* tcpKeepAlive */
            invokespecial io.vertx.core.http.HttpServerOptions.setTcpKeepAlive:(Z)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // boolean tcpKeepAlive
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  tcpKeepAlive  Z
    MethodParameters:
              Name  Flags
      tcpKeepAlive  

  public io.vertx.ext.shell.term.HttpTermOptions setSoLinger(int);
    descriptor: (I)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // int soLinger
         0: .line 210
            aload 0 /* this */
            iload 1 /* soLinger */
            invokespecial io.vertx.core.http.HttpServerOptions.setSoLinger:(I)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // int soLinger
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  soLinger  I
    MethodParameters:
          Name  Flags
      soLinger  

  public io.vertx.ext.shell.term.HttpTermOptions setIdleTimeout(int);
    descriptor: (I)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // int idleTimeout
         0: .line 215
            aload 0 /* this */
            iload 1 /* idleTimeout */
            invokespecial io.vertx.core.http.HttpServerOptions.setIdleTimeout:(I)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // int idleTimeout
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  idleTimeout  I
    MethodParameters:
             Name  Flags
      idleTimeout  

  public io.vertx.ext.shell.term.HttpTermOptions setSsl(boolean);
    descriptor: (Z)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // boolean ssl
         0: .line 220
            aload 0 /* this */
            iload 1 /* ssl */
            invokespecial io.vertx.core.http.HttpServerOptions.setSsl:(Z)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // boolean ssl
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1   ssl  Z
    MethodParameters:
      Name  Flags
      ssl   

  public io.vertx.ext.shell.term.HttpTermOptions setKeyStoreOptions(io.vertx.core.net.JksOptions);
    descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // io.vertx.core.net.JksOptions options
         0: .line 225
            aload 0 /* this */
            aload 1 /* options */
            invokespecial io.vertx.core.http.HttpServerOptions.setKeyStoreOptions:(Lio/vertx/core/net/JksOptions;)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // io.vertx.core.net.JksOptions options
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  options  Lio/vertx/core/net/JksOptions;
    MethodParameters:
         Name  Flags
      options  

  public io.vertx.ext.shell.term.HttpTermOptions setPfxKeyCertOptions(io.vertx.core.net.PfxOptions);
    descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // io.vertx.core.net.PfxOptions options
         0: .line 230
            aload 0 /* this */
            aload 1 /* options */
            invokespecial io.vertx.core.http.HttpServerOptions.setPfxKeyCertOptions:(Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // io.vertx.core.net.PfxOptions options
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  options  Lio/vertx/core/net/PfxOptions;
    MethodParameters:
         Name  Flags
      options  

  public io.vertx.ext.shell.term.HttpTermOptions setPemKeyCertOptions(io.vertx.core.net.PemKeyCertOptions);
    descriptor: (Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // io.vertx.core.net.PemKeyCertOptions options
         0: .line 235
            aload 0 /* this */
            aload 1 /* options */
            invokespecial io.vertx.core.http.HttpServerOptions.setPemKeyCertOptions:(Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // io.vertx.core.net.PemKeyCertOptions options
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  options  Lio/vertx/core/net/PemKeyCertOptions;
    MethodParameters:
         Name  Flags
      options  

  public io.vertx.ext.shell.term.HttpTermOptions setTrustStoreOptions(io.vertx.core.net.JksOptions);
    descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // io.vertx.core.net.JksOptions options
         0: .line 240
            aload 0 /* this */
            aload 1 /* options */
            invokespecial io.vertx.core.http.HttpServerOptions.setTrustStoreOptions:(Lio/vertx/core/net/JksOptions;)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // io.vertx.core.net.JksOptions options
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  options  Lio/vertx/core/net/JksOptions;
    MethodParameters:
         Name  Flags
      options  

  public io.vertx.ext.shell.term.HttpTermOptions setPemTrustOptions(io.vertx.core.net.PemTrustOptions);
    descriptor: (Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // io.vertx.core.net.PemTrustOptions options
         0: .line 245
            aload 0 /* this */
            aload 1 /* options */
            invokespecial io.vertx.core.http.HttpServerOptions.setPemTrustOptions:(Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // io.vertx.core.net.PemTrustOptions options
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  options  Lio/vertx/core/net/PemTrustOptions;
    MethodParameters:
         Name  Flags
      options  

  public io.vertx.ext.shell.term.HttpTermOptions setPfxTrustOptions(io.vertx.core.net.PfxOptions);
    descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // io.vertx.core.net.PfxOptions options
         0: .line 250
            aload 0 /* this */
            aload 1 /* options */
            invokespecial io.vertx.core.http.HttpServerOptions.setPfxTrustOptions:(Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // io.vertx.core.net.PfxOptions options
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  options  Lio/vertx/core/net/PfxOptions;
    MethodParameters:
         Name  Flags
      options  

  public io.vertx.ext.shell.term.HttpTermOptions addEnabledCipherSuite(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // java.lang.String suite
         0: .line 255
            aload 0 /* this */
            aload 1 /* suite */
            invokespecial io.vertx.core.http.HttpServerOptions.addEnabledCipherSuite:(Ljava/lang/String;)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // java.lang.String suite
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  suite  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      suite  

  public io.vertx.ext.shell.term.HttpTermOptions addCrlPath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // java.lang.String crlPath
         0: .line 260
            aload 0 /* this */
            aload 1 /* crlPath */
            invokespecial io.vertx.core.http.HttpServerOptions.addCrlPath:(Ljava/lang/String;)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // java.lang.String crlPath
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  crlPath  Ljava/lang/String;
    Exceptions:
      throws java.lang.NullPointerException
    MethodParameters:
         Name  Flags
      crlPath  

  public io.vertx.ext.shell.term.HttpTermOptions addCrlValue(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // io.vertx.core.buffer.Buffer crlValue
         0: .line 265
            aload 0 /* this */
            aload 1 /* crlValue */
            invokespecial io.vertx.core.http.HttpServerOptions.addCrlValue:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // io.vertx.core.buffer.Buffer crlValue
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  crlValue  Lio/vertx/core/buffer/Buffer;
    Exceptions:
      throws java.lang.NullPointerException
    MethodParameters:
          Name  Flags
      crlValue  

  public io.vertx.ext.shell.term.HttpTermOptions setAcceptBacklog(int);
    descriptor: (I)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // int acceptBacklog
         0: .line 270
            aload 0 /* this */
            iload 1 /* acceptBacklog */
            invokespecial io.vertx.core.http.HttpServerOptions.setAcceptBacklog:(I)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // int acceptBacklog
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  acceptBacklog  I
    MethodParameters:
               Name  Flags
      acceptBacklog  

  public io.vertx.ext.shell.term.HttpTermOptions setPort(int);
    descriptor: (I)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // int port
         0: .line 275
            aload 0 /* this */
            iload 1 /* port */
            invokespecial io.vertx.core.http.HttpServerOptions.setPort:(I)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // int port
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  port  I
    MethodParameters:
      Name  Flags
      port  

  public io.vertx.ext.shell.term.HttpTermOptions setHost(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // java.lang.String host
         0: .line 280
            aload 0 /* this */
            aload 1 /* host */
            invokespecial io.vertx.core.http.HttpServerOptions.setHost:(Ljava/lang/String;)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // java.lang.String host
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  host  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      host  

  public io.vertx.ext.shell.term.HttpTermOptions setClientAuth(io.vertx.core.http.ClientAuth);
    descriptor: (Lio/vertx/core/http/ClientAuth;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // io.vertx.core.http.ClientAuth clientAuth
         0: .line 285
            aload 0 /* this */
            aload 1 /* clientAuth */
            invokespecial io.vertx.core.http.HttpServerOptions.setClientAuth:(Lio/vertx/core/http/ClientAuth;)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // io.vertx.core.http.ClientAuth clientAuth
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  clientAuth  Lio/vertx/core/http/ClientAuth;
    MethodParameters:
            Name  Flags
      clientAuth  

  public io.vertx.ext.shell.term.HttpTermOptions setCompressionSupported(boolean);
    descriptor: (Z)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // boolean compressionSupported
         0: .line 290
            aload 0 /* this */
            iload 1 /* compressionSupported */
            invokespecial io.vertx.core.http.HttpServerOptions.setCompressionSupported:(Z)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // boolean compressionSupported
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    1     0                  this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  compressionSupported  Z
    MethodParameters:
                      Name  Flags
      compressionSupported  

  public io.vertx.ext.shell.term.HttpTermOptions setHandle100ContinueAutomatically(boolean);
    descriptor: (Z)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // boolean handle100ContinueAutomatically
         0: .line 295
            aload 0 /* this */
            iload 1 /* handle100ContinueAutomatically */
            invokespecial io.vertx.core.http.HttpServerOptions.setHandle100ContinueAutomatically:(Z)Lio/vertx/core/http/HttpServerOptions;
            checkcast io.vertx.ext.shell.term.HttpTermOptions
            areturn
        end local 1 // boolean handle100ContinueAutomatically
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot                            Name  Signature
            0    1     0                            this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    1     1  handle100ContinueAutomatically  Z
    MethodParameters:
                                Name  Flags
      handle100ContinueAutomatically  

  public io.vertx.core.buffer.Buffer getVertsShellJsResource();
    descriptor: ()Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
         0: .line 302
            aload 0 /* this */
            getfield io.vertx.ext.shell.term.HttpTermOptions.vertsShellJsResource:Lio/vertx/core/buffer/Buffer;
            areturn
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/term/HttpTermOptions;

  public io.vertx.ext.shell.term.HttpTermOptions setVertsShellJsResource(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // io.vertx.core.buffer.Buffer vertsShellJsResource
         0: .line 312
            aload 0 /* this */
            aload 1 /* vertsShellJsResource */
            putfield io.vertx.ext.shell.term.HttpTermOptions.vertsShellJsResource:Lio/vertx/core/buffer/Buffer;
         1: .line 313
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.buffer.Buffer vertsShellJsResource
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    2     1  vertsShellJsResource  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
                      Name  Flags
      vertsShellJsResource  

  public io.vertx.core.buffer.Buffer getTermJsResource();
    descriptor: ()Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
         0: .line 320
            aload 0 /* this */
            getfield io.vertx.ext.shell.term.HttpTermOptions.termJsResource:Lio/vertx/core/buffer/Buffer;
            areturn
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/term/HttpTermOptions;

  public io.vertx.ext.shell.term.HttpTermOptions setTermJsResource(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // io.vertx.core.buffer.Buffer termJsResource
         0: .line 330
            aload 0 /* this */
            aload 1 /* termJsResource */
            putfield io.vertx.ext.shell.term.HttpTermOptions.termJsResource:Lio/vertx/core/buffer/Buffer;
         1: .line 331
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.buffer.Buffer termJsResource
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    2     1  termJsResource  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
                Name  Flags
      termJsResource  

  public io.vertx.core.buffer.Buffer getShellHtmlResource();
    descriptor: ()Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
         0: .line 338
            aload 0 /* this */
            getfield io.vertx.ext.shell.term.HttpTermOptions.shellHtmlResource:Lio/vertx/core/buffer/Buffer;
            areturn
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/term/HttpTermOptions;

  public io.vertx.ext.shell.term.HttpTermOptions setShellHtmlResource(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // io.vertx.core.buffer.Buffer shellHtmlResource
         0: .line 348
            aload 0 /* this */
            aload 1 /* shellHtmlResource */
            putfield io.vertx.ext.shell.term.HttpTermOptions.shellHtmlResource:Lio/vertx/core/buffer/Buffer;
         1: .line 349
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.buffer.Buffer shellHtmlResource
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    2     1  shellHtmlResource  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
                   Name  Flags
      shellHtmlResource  

  public java.lang.String getCharset();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
         0: .line 356
            aload 0 /* this */
            getfield io.vertx.ext.shell.term.HttpTermOptions.charset:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/term/HttpTermOptions;

  public io.vertx.ext.shell.term.HttpTermOptions setCharset(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // java.lang.String charset
         0: .line 366
            aload 0 /* this */
            aload 1 /* charset */
            putfield io.vertx.ext.shell.term.HttpTermOptions.charset:Ljava/lang/String;
         1: .line 367
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String charset
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    2     1  charset  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      charset  

  public java.lang.String getIntputrc();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
         0: .line 374
            aload 0 /* this */
            getfield io.vertx.ext.shell.term.HttpTermOptions.intputrc:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/term/HttpTermOptions;

  public io.vertx.ext.shell.term.HttpTermOptions setIntputrc(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/shell/term/HttpTermOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.term.HttpTermOptions this
        start local 1 // java.lang.String intputrc
         0: .line 384
            aload 0 /* this */
            aload 1 /* intputrc */
            putfield io.vertx.ext.shell.term.HttpTermOptions.intputrc:Ljava/lang/String;
         1: .line 385
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String intputrc
        end local 0 // io.vertx.ext.shell.term.HttpTermOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/vertx/ext/shell/term/HttpTermOptions;
            0    2     1  intputrc  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      intputrc  

  public io.vertx.core.http.HttpServerOptions setHost(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setHost:(Ljava/lang/String;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setHost(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setHost:(Ljava/lang/String;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setSendBufferSize(int);
    descriptor: (I)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setSendBufferSize:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetworkOptions setSendBufferSize(int);
    descriptor: (I)Lio/vertx/core/net/NetworkOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setSendBufferSize:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setSendBufferSize(int);
    descriptor: (I)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setSendBufferSize:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setSendBufferSize(int);
    descriptor: (I)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setSendBufferSize:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setSoLinger(int);
    descriptor: (I)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setSoLinger:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setSoLinger(int);
    descriptor: (I)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setSoLinger:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setSoLinger(int);
    descriptor: (I)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setSoLinger:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setReuseAddress(boolean);
    descriptor: (Z)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setReuseAddress:(Z)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetworkOptions setReuseAddress(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetworkOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setReuseAddress:(Z)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setReuseAddress(boolean);
    descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setReuseAddress:(Z)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setReuseAddress(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setReuseAddress:(Z)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setPfxTrustOptions(io.vertx.core.net.PfxOptions);
    descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setPfxTrustOptions:(Lio/vertx/core/net/PfxOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setPfxTrustOptions(io.vertx.core.net.PfxOptions);
    descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setPfxTrustOptions:(Lio/vertx/core/net/PfxOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setPfxTrustOptions(io.vertx.core.net.PfxOptions);
    descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setPfxTrustOptions:(Lio/vertx/core/net/PfxOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions addEnabledCipherSuite(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.addEnabledCipherSuite:(Ljava/lang/String;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions addEnabledCipherSuite(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.addEnabledCipherSuite:(Ljava/lang/String;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions addEnabledCipherSuite(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.addEnabledCipherSuite:(Ljava/lang/String;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setTcpKeepAlive(boolean);
    descriptor: (Z)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setTcpKeepAlive:(Z)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setTcpKeepAlive(boolean);
    descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setTcpKeepAlive:(Z)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setTcpKeepAlive(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setTcpKeepAlive:(Z)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setAcceptBacklog(int);
    descriptor: (I)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setAcceptBacklog:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setAcceptBacklog(int);
    descriptor: (I)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setAcceptBacklog:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setClientAuth(io.vertx.core.http.ClientAuth);
    descriptor: (Lio/vertx/core/http/ClientAuth;)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setClientAuth:(Lio/vertx/core/http/ClientAuth;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setClientAuth(io.vertx.core.http.ClientAuth);
    descriptor: (Lio/vertx/core/http/ClientAuth;)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setClientAuth:(Lio/vertx/core/http/ClientAuth;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setIdleTimeout(int);
    descriptor: (I)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setIdleTimeout:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setIdleTimeout(int);
    descriptor: (I)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setIdleTimeout:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setIdleTimeout(int);
    descriptor: (I)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setIdleTimeout:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setPemKeyCertOptions(io.vertx.core.net.PemKeyCertOptions);
    descriptor: (Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setPemKeyCertOptions:(Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setPemKeyCertOptions(io.vertx.core.net.PemKeyCertOptions);
    descriptor: (Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setPemKeyCertOptions:(Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setPemKeyCertOptions(io.vertx.core.net.PemKeyCertOptions);
    descriptor: (Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setPemKeyCertOptions:(Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setTrafficClass(int);
    descriptor: (I)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setTrafficClass:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetworkOptions setTrafficClass(int);
    descriptor: (I)Lio/vertx/core/net/NetworkOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setTrafficClass:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setTrafficClass(int);
    descriptor: (I)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setTrafficClass:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setTrafficClass(int);
    descriptor: (I)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setTrafficClass:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setCompressionSupported(boolean);
    descriptor: (Z)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setCompressionSupported:(Z)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions addCrlPath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.addCrlPath:(Ljava/lang/String;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.NullPointerException

  public io.vertx.core.net.TCPSSLOptions addCrlPath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.addCrlPath:(Ljava/lang/String;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.NullPointerException

  public io.vertx.core.net.NetServerOptions addCrlPath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.addCrlPath:(Ljava/lang/String;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.NullPointerException

  public io.vertx.core.http.HttpServerOptions setPfxKeyCertOptions(io.vertx.core.net.PfxOptions);
    descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setPfxKeyCertOptions:(Lio/vertx/core/net/PfxOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setPfxKeyCertOptions(io.vertx.core.net.PfxOptions);
    descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setPfxKeyCertOptions:(Lio/vertx/core/net/PfxOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setPfxKeyCertOptions(io.vertx.core.net.PfxOptions);
    descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setPfxKeyCertOptions:(Lio/vertx/core/net/PfxOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setPort(int);
    descriptor: (I)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setPort:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setPort(int);
    descriptor: (I)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setPort:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setReceiveBufferSize(int);
    descriptor: (I)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setReceiveBufferSize:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetworkOptions setReceiveBufferSize(int);
    descriptor: (I)Lio/vertx/core/net/NetworkOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setReceiveBufferSize:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setReceiveBufferSize(int);
    descriptor: (I)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setReceiveBufferSize:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setReceiveBufferSize(int);
    descriptor: (I)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setReceiveBufferSize:(I)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setTrustStoreOptions(io.vertx.core.net.JksOptions);
    descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setTrustStoreOptions:(Lio/vertx/core/net/JksOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setTrustStoreOptions(io.vertx.core.net.JksOptions);
    descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setTrustStoreOptions:(Lio/vertx/core/net/JksOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setTrustStoreOptions(io.vertx.core.net.JksOptions);
    descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setTrustStoreOptions:(Lio/vertx/core/net/JksOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setKeyStoreOptions(io.vertx.core.net.JksOptions);
    descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setKeyStoreOptions:(Lio/vertx/core/net/JksOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setKeyStoreOptions(io.vertx.core.net.JksOptions);
    descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setKeyStoreOptions:(Lio/vertx/core/net/JksOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setKeyStoreOptions(io.vertx.core.net.JksOptions);
    descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setKeyStoreOptions:(Lio/vertx/core/net/JksOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setPemTrustOptions(io.vertx.core.net.PemTrustOptions);
    descriptor: (Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setPemTrustOptions:(Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setPemTrustOptions(io.vertx.core.net.PemTrustOptions);
    descriptor: (Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setPemTrustOptions:(Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setPemTrustOptions(io.vertx.core.net.PemTrustOptions);
    descriptor: (Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setPemTrustOptions:(Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setTcpNoDelay(boolean);
    descriptor: (Z)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setTcpNoDelay:(Z)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setTcpNoDelay(boolean);
    descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setTcpNoDelay:(Z)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setTcpNoDelay(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setTcpNoDelay:(Z)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setHandle100ContinueAutomatically(boolean);
    descriptor: (Z)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setHandle100ContinueAutomatically:(Z)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions setSsl(boolean);
    descriptor: (Z)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setSsl:(Z)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setSsl(boolean);
    descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setSsl:(Z)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetServerOptions setSsl(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.setSsl:(Z)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.HttpServerOptions addCrlValue(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/HttpServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.addCrlValue:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.NullPointerException

  public io.vertx.core.net.TCPSSLOptions addCrlValue(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.addCrlValue:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.NullPointerException

  public io.vertx.core.net.NetServerOptions addCrlValue(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/net/NetServerOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.term.HttpTermOptions.addCrlValue:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/ext/shell/term/HttpTermOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.NullPointerException
}
SourceFile: "HttpTermOptions.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true)