public interface io.vertx.ext.web.handler.BasicAuthHandler extends io.vertx.ext.web.handler.AuthenticationHandler
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.ext.web.handler.BasicAuthHandler
  super_class: java.lang.Object
{
  public static final java.lang.String DEFAULT_REALM;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "vertx-web"

  public static io.vertx.ext.web.handler.BasicAuthHandler create(io.vertx.ext.auth.authentication.AuthenticationProvider);
    descriptor: (Lio/vertx/ext/auth/authentication/AuthenticationProvider;)Lio/vertx/ext/web/handler/BasicAuthHandler;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.ext.auth.authentication.AuthenticationProvider authProvider
         0: .line 43
            new io.vertx.ext.web.handler.impl.BasicAuthHandlerImpl
            dup
            aload 0 /* authProvider */
            ldc "vertx-web"
            invokespecial io.vertx.ext.web.handler.impl.BasicAuthHandlerImpl.<init>:(Lio/vertx/ext/auth/authentication/AuthenticationProvider;Ljava/lang/String;)V
            areturn
        end local 0 // io.vertx.ext.auth.authentication.AuthenticationProvider authProvider
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0  authProvider  Lio/vertx/ext/auth/authentication/AuthenticationProvider;
    MethodParameters:
              Name  Flags
      authProvider  

  public static io.vertx.ext.web.handler.BasicAuthHandler create(io.vertx.ext.auth.authentication.AuthenticationProvider, java.lang.String);
    descriptor: (Lio/vertx/ext/auth/authentication/AuthenticationProvider;Ljava/lang/String;)Lio/vertx/ext/web/handler/BasicAuthHandler;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.ext.auth.authentication.AuthenticationProvider authProvider
        start local 1 // java.lang.String realm
         0: .line 54
            new io.vertx.ext.web.handler.impl.BasicAuthHandlerImpl
            dup
            aload 0 /* authProvider */
            aload 1 /* realm */
            invokespecial io.vertx.ext.web.handler.impl.BasicAuthHandlerImpl.<init>:(Lio/vertx/ext/auth/authentication/AuthenticationProvider;Ljava/lang/String;)V
            areturn
        end local 1 // java.lang.String realm
        end local 0 // io.vertx.ext.auth.authentication.AuthenticationProvider authProvider
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0  authProvider  Lio/vertx/ext/auth/authentication/AuthenticationProvider;
            0    1     1         realm  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      authProvider  
      realm         
}
SourceFile: "BasicAuthHandler.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()