abstract class io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler<T extends io.vertx.ext.auth.authentication.AuthenticationProvider> extends io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler
  super_class: io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl
{
  protected final io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler$Type type;
    descriptor: Lio/vertx/ext/web/handler/impl/HTTPAuthorizationHandler$Type;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Signature: Lio/vertx/ext/web/handler/impl/HTTPAuthorizationHandler$Type;

  void <init>(T, io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler$Type);
    descriptor: (Lio/vertx/ext/auth/authentication/AuthenticationProvider;Lio/vertx/ext/web/handler/impl/HTTPAuthorizationHandler$Type;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler this
        start local 1 // io.vertx.ext.auth.authentication.AuthenticationProvider authProvider
        start local 2 // io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler$Type type
         0: .line 65
            aload 0 /* this */
            aload 1 /* authProvider */
            invokespecial io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.<init>:(Lio/vertx/ext/auth/authentication/AuthenticationProvider;)V
         1: .line 66
            aload 0 /* this */
            aload 2 /* type */
            putfield io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler.type:Lio/vertx/ext/web/handler/impl/HTTPAuthorizationHandler$Type;
         2: .line 67
            return
        end local 2 // io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler$Type type
        end local 1 // io.vertx.ext.auth.authentication.AuthenticationProvider authProvider
        end local 0 // io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lio/vertx/ext/web/handler/impl/HTTPAuthorizationHandler<TT;>;
            0    3     1  authProvider  TT;
            0    3     2          type  Lio/vertx/ext/web/handler/impl/HTTPAuthorizationHandler$Type;
    Signature: (TT;Lio/vertx/ext/web/handler/impl/HTTPAuthorizationHandler$Type;)V
    MethodParameters:
              Name  Flags
      authProvider  
      type          

  void <init>(T, java.lang.String, io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler$Type);
    descriptor: (Lio/vertx/ext/auth/authentication/AuthenticationProvider;Ljava/lang/String;Lio/vertx/ext/web/handler/impl/HTTPAuthorizationHandler$Type;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler this
        start local 1 // io.vertx.ext.auth.authentication.AuthenticationProvider authProvider
        start local 2 // java.lang.String realm
        start local 3 // io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler$Type type
         0: .line 70
            aload 0 /* this */
            aload 1 /* authProvider */
            aload 2 /* realm */
            invokespecial io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.<init>:(Lio/vertx/ext/auth/authentication/AuthenticationProvider;Ljava/lang/String;)V
         1: .line 71
            aload 0 /* this */
            aload 3 /* type */
            putfield io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler.type:Lio/vertx/ext/web/handler/impl/HTTPAuthorizationHandler$Type;
         2: .line 72
            return
        end local 3 // io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler$Type type
        end local 2 // java.lang.String realm
        end local 1 // io.vertx.ext.auth.authentication.AuthenticationProvider authProvider
        end local 0 // io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lio/vertx/ext/web/handler/impl/HTTPAuthorizationHandler<TT;>;
            0    3     1  authProvider  TT;
            0    3     2         realm  Ljava/lang/String;
            0    3     3          type  Lio/vertx/ext/web/handler/impl/HTTPAuthorizationHandler$Type;
    Signature: (TT;Ljava/lang/String;Lio/vertx/ext/web/handler/impl/HTTPAuthorizationHandler$Type;)V
    MethodParameters:
              Name  Flags
      authProvider  
      realm         
      type          

  protected final void parseAuthorization(io.vertx.ext.web.RoutingContext, boolean, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.String>>);
    descriptor: (Lio/vertx/ext/web/RoutingContext;ZLio/vertx/core/Handler;)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler this
        start local 1 // io.vertx.ext.web.RoutingContext ctx
        start local 2 // boolean optional
        start local 3 // io.vertx.core.Handler handler
         0: .line 76
            aload 1 /* ctx */
            invokeinterface io.vertx.ext.web.RoutingContext.request:()Lio/vertx/core/http/HttpServerRequest;
            astore 4 /* request */
        start local 4 // io.vertx.core.http.HttpServerRequest request
         1: .line 77
            aload 4 /* request */
            invokeinterface io.vertx.core.http.HttpServerRequest.headers:()Lio/vertx/core/MultiMap;
            getstatic io.vertx.core.http.HttpHeaders.AUTHORIZATION:Ljava/lang/CharSequence;
            invokeinterface io.vertx.core.MultiMap.get:(Ljava/lang/CharSequence;)Ljava/lang/String;
            astore 5 /* authorization */
        start local 5 // java.lang.String authorization
         2: .line 79
            aload 5 /* authorization */
            ifnonnull 8
         3: .line 80
            iload 2 /* optional */
            ifeq 6
         4: .line 82
            aload 3 /* handler */
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         5: .line 83
            goto 7
         6: .line 84
      StackMap locals: io.vertx.core.http.HttpServerRequest java.lang.String
      StackMap stack:
            aload 3 /* handler */
            getstatic io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler.UNAUTHORIZED:Lio/vertx/ext/web/handler/impl/HttpStatusException;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         7: .line 86
      StackMap locals:
      StackMap stack:
            return
         8: .line 90
      StackMap locals:
      StackMap stack:
            aload 5 /* authorization */
            bipush 32
            invokevirtual java.lang.String.indexOf:(I)I
            istore 6 /* idx */
        start local 6 // int idx
         9: .line 92
            iload 6 /* idx */
            ifgt 12
        10: .line 93
            aload 3 /* handler */
            getstatic io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler.BAD_REQUEST:Lio/vertx/ext/web/handler/impl/HttpStatusException;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        11: .line 94
            return
        12: .line 97
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler.type:Lio/vertx/ext/web/handler/impl/HTTPAuthorizationHandler$Type;
            aload 5 /* authorization */
            iconst_0
            iload 6 /* idx */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            invokevirtual io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler$Type.is:(Ljava/lang/String;)Z
            ifne 15
        13: .line 98
            aload 3 /* handler */
            getstatic io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler.UNAUTHORIZED:Lio/vertx/ext/web/handler/impl/HttpStatusException;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        14: .line 99
            return
        15: .line 102
      StackMap locals:
      StackMap stack:
            aload 3 /* handler */
            aload 5 /* authorization */
            iload 6 /* idx */
            iconst_1
            iadd
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 6 // int idx
        16: .line 103
            goto 19
      StackMap locals: io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler io.vertx.ext.web.RoutingContext int io.vertx.core.Handler io.vertx.core.http.HttpServerRequest java.lang.String
      StackMap stack: java.lang.RuntimeException
        17: astore 6 /* e */
        start local 6 // java.lang.RuntimeException e
        18: .line 104
            aload 3 /* handler */
            aload 6 /* e */
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 6 // java.lang.RuntimeException e
        19: .line 106
      StackMap locals:
      StackMap stack:
            return
        end local 5 // java.lang.String authorization
        end local 4 // io.vertx.core.http.HttpServerRequest request
        end local 3 // io.vertx.core.Handler handler
        end local 2 // boolean optional
        end local 1 // io.vertx.ext.web.RoutingContext ctx
        end local 0 // io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   20     0           this  Lio/vertx/ext/web/handler/impl/HTTPAuthorizationHandler<TT;>;
            0   20     1            ctx  Lio/vertx/ext/web/RoutingContext;
            0   20     2       optional  Z
            0   20     3        handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;
            1   20     4        request  Lio/vertx/core/http/HttpServerRequest;
            2   20     5  authorization  Ljava/lang/String;
            9   16     6            idx  I
           18   19     6              e  Ljava/lang/RuntimeException;
      Exception table:
        from    to  target  type
           8    11      17  Class java.lang.RuntimeException
          12    14      17  Class java.lang.RuntimeException
          15    16      17  Class java.lang.RuntimeException
    Signature: (Lio/vertx/ext/web/RoutingContext;ZLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;)V
    MethodParameters:
          Name  Flags
      ctx       
      optional  
      handler   

  public java.lang.String authenticateHeader(io.vertx.ext.web.RoutingContext);
    descriptor: (Lio/vertx/ext/web/RoutingContext;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler this
        start local 1 // io.vertx.ext.web.RoutingContext context
         0: .line 115
            aload 0 /* this */
            getfield io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler.realm:Ljava/lang/String;
            ifnull 2
            aload 0 /* this */
            getfield io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler.realm:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            ifle 2
         1: .line 116
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            aload 0 /* this */
            getfield io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler.type:Lio/vertx/ext/web/handler/impl/HTTPAuthorizationHandler$Type;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " realm=\""
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler.realm:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "\""
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
         2: .line 118
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 1 // io.vertx.ext.web.RoutingContext context
        end local 0 // io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/ext/web/handler/impl/HTTPAuthorizationHandler<TT;>;
            0    3     1  context  Lio/vertx/ext/web/RoutingContext;
    MethodParameters:
         Name  Flags
      context  
}
Signature: <T::Lio/vertx/ext/auth/authentication/AuthenticationProvider;>Lio/vertx/ext/web/handler/impl/AuthenticationHandlerImpl<TT;>;
SourceFile: "HTTPAuthorizationHandler.java"
NestMembers:
  io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler$Type
InnerClasses:
  final Type = io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler$Type of io.vertx.ext.web.handler.impl.HTTPAuthorizationHandler