public class io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions implements io.vertx.ext.auth.AuthOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions
  super_class: java.lang.Object
{
  private java.lang.String htpasswdFile;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private boolean plainTextEnabled;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
         0: .line 35
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 36
            aload 0 /* this */
            ldc ".htpasswd"
            putfield io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions.htpasswdFile:Ljava/lang/String;
         2: .line 37
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions.plainTextEnabled:Z
         3: .line 38
            return
        end local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;

  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.auth.htpasswd.HtpasswdAuthOptions this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 41
            aload 0 /* this */
            invokespecial io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions.<init>:()V
         1: .line 42
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.ext.auth.htpasswd.HtpasswdAuthOptionsConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;)V
         2: .line 43
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;
            0    3     1  json  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      json  

  public void <init>(io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions);
    descriptor: (Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
        start local 1 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions that
         0: .line 46
            aload 0 /* this */
            invokespecial io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions.<init>:()V
         1: .line 47
            aload 0 /* this */
            aload 1 /* that */
            getfield io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions.htpasswdFile:Ljava/lang/String;
            putfield io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions.htpasswdFile:Ljava/lang/String;
         2: .line 48
            aload 0 /* this */
            aload 1 /* that */
            getfield io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions.plainTextEnabled:Z
            putfield io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions.plainTextEnabled:Z
         3: .line 49
            return
        end local 1 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions that
        end local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;
            0    4     1  that  Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;
    MethodParameters:
      Name  Flags
      that  

  public io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions setPlainTextEnabled(boolean);
    descriptor: (Z)Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
        start local 1 // boolean plainTextEnabled
         0: .line 52
            aload 0 /* this */
            iload 1 /* plainTextEnabled */
            putfield io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions.plainTextEnabled:Z
         1: .line 53
            aload 0 /* this */
            areturn
        end local 1 // boolean plainTextEnabled
        end local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;
            0    2     1  plainTextEnabled  Z
    MethodParameters:
                  Name  Flags
      plainTextEnabled  

  public boolean isPlainTextEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
         0: .line 57
            aload 0 /* this */
            getfield io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions.plainTextEnabled:Z
            ireturn
        end local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;

  public java.lang.String getHtpasswdFile();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
         0: .line 61
            aload 0 /* this */
            getfield io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions.htpasswdFile:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;

  public io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions setHtpasswdFile(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
        start local 1 // java.lang.String htpasswdFile
         0: .line 65
            aload 0 /* this */
            aload 1 /* htpasswdFile */
            putfield io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions.htpasswdFile:Ljava/lang/String;
         1: .line 66
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String htpasswdFile
        end local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;
            0    2     1  htpasswdFile  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      htpasswdFile  

  public io.vertx.ext.auth.AuthOptions clone();
    descriptor: ()Lio/vertx/ext/auth/AuthOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
         0: .line 71
            new io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions
            dup
            aload 0 /* this */
            invokespecial io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions.<init>:(Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;)V
            areturn
        end local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;

  public io.vertx.ext.auth.AuthProvider createProvider(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)Lio/vertx/ext/auth/AuthProvider;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 76
            aload 1 /* vertx */
            aload 0 /* this */
            invokestatic io.vertx.ext.auth.htpasswd.HtpasswdAuth.create:(Lio/vertx/core/Vertx;Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;)Lio/vertx/ext/auth/htpasswd/HtpasswdAuth;
            areturn
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;
            0    1     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  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.ext.auth.htpasswd.HtpasswdAuthOptions this
         0: .line 80
            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 81
            aload 0 /* this */
            aload 1 /* json */
            invokestatic io.vertx.ext.auth.htpasswd.HtpasswdAuthOptionsConverter.toJson:(Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;Lio/vertx/core/json/JsonObject;)V
         2: .line 82
            aload 1 /* json */
            areturn
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/auth/htpasswd/HtpasswdAuthOptions;
            1    3     1  json  Lio/vertx/core/json/JsonObject;

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions.clone:()Lio/vertx/ext/auth/AuthOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
SourceFile: "HtpasswdAuthOptions.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true)