public class io.vertx.ext.auth.jdbc.JDBCAuthenticationOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.auth.jdbc.JDBCAuthenticationOptions
  super_class: java.lang.Object
{
  private static final java.lang.String DEFAULT_AUTHENTICATE_QUERY;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "SELECT PASSWORD, PASSWORD_SALT FROM USER WHERE USERNAME = ?"

  private java.lang.String authenticationQuery;
    descriptor: Ljava/lang/String;
    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.jdbc.JDBCAuthenticationOptions this
         0: .line 37
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 38
            aload 0 /* this */
            ldc "SELECT PASSWORD, PASSWORD_SALT FROM USER WHERE USERNAME = ?"
            putfield io.vertx.ext.auth.jdbc.JDBCAuthenticationOptions.authenticationQuery:Ljava/lang/String;
         2: .line 39
            return
        end local 0 // io.vertx.ext.auth.jdbc.JDBCAuthenticationOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/auth/jdbc/JDBCAuthenticationOptions;

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

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

  public io.vertx.ext.auth.jdbc.JDBCAuthenticationOptions setAuthenticationQuery(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/auth/jdbc/JDBCAuthenticationOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.auth.jdbc.JDBCAuthenticationOptions this
        start local 1 // java.lang.String authenticationQuery
         0: .line 59
            aload 0 /* this */
            aload 1 /* authenticationQuery */
            putfield io.vertx.ext.auth.jdbc.JDBCAuthenticationOptions.authenticationQuery:Ljava/lang/String;
         1: .line 60
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String authenticationQuery
        end local 0 // io.vertx.ext.auth.jdbc.JDBCAuthenticationOptions this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    2     0                 this  Lio/vertx/ext/auth/jdbc/JDBCAuthenticationOptions;
            0    2     1  authenticationQuery  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
                     Name  Flags
      authenticationQuery  
}
SourceFile: "JDBCAuthenticationOptions.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true)