abstract class io.vertx.ext.web.handler.impl.AuthorizationAuthHandler extends io.vertx.ext.web.handler.impl.AuthHandlerImpl
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: io.vertx.ext.web.handler.impl.AuthorizationAuthHandler
  super_class: io.vertx.ext.web.handler.impl.AuthHandlerImpl
{
  protected final io.vertx.ext.web.handler.impl.AuthorizationAuthHandler$Type type;
    descriptor: Lio/vertx/ext/web/handler/impl/AuthorizationAuthHandler$Type;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  void <init>(io.vertx.ext.auth.AuthProvider, io.vertx.ext.web.handler.impl.AuthorizationAuthHandler$Type);
    descriptor: (Lio/vertx/ext/auth/AuthProvider;Lio/vertx/ext/web/handler/impl/AuthorizationAuthHandler$Type;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.handler.impl.AuthorizationAuthHandler this
        start local 1 // io.vertx.ext.auth.AuthProvider authProvider
        start local 2 // io.vertx.ext.web.handler.impl.AuthorizationAuthHandler$Type type
         0: .line 60
            aload 0 /* this */
            aload 1 /* authProvider */
            invokespecial io.vertx.ext.web.handler.impl.AuthHandlerImpl.<init>:(Lio/vertx/ext/auth/AuthProvider;)V
         1: .line 61
            aload 0 /* this */
            aload 2 /* type */
            putfield io.vertx.ext.web.handler.impl.AuthorizationAuthHandler.type:Lio/vertx/ext/web/handler/impl/AuthorizationAuthHandler$Type;
         2: .line 62
            return
        end local 2 // io.vertx.ext.web.handler.impl.AuthorizationAuthHandler$Type type
        end local 1 // io.vertx.ext.auth.AuthProvider authProvider
        end local 0 // io.vertx.ext.web.handler.impl.AuthorizationAuthHandler this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lio/vertx/ext/web/handler/impl/AuthorizationAuthHandler;
            0    3     1  authProvider  Lio/vertx/ext/auth/AuthProvider;
            0    3     2          type  Lio/vertx/ext/web/handler/impl/AuthorizationAuthHandler$Type;
    MethodParameters:
              Name  Flags
      authProvider  
      type          

  void <init>(io.vertx.ext.auth.AuthProvider, java.lang.String, io.vertx.ext.web.handler.impl.AuthorizationAuthHandler$Type);
    descriptor: (Lio/vertx/ext/auth/AuthProvider;Ljava/lang/String;Lio/vertx/ext/web/handler/impl/AuthorizationAuthHandler$Type;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.ext.web.handler.impl.AuthorizationAuthHandler this
        start local 1 // io.vertx.ext.auth.AuthProvider authProvider
        start local 2 // java.lang.String realm
        start local 3 // io.vertx.ext.web.handler.impl.AuthorizationAuthHandler$Type type
         0: .line 65
            aload 0 /* this */
            aload 1 /* authProvider */
            aload 2 /* realm */
            invokespecial io.vertx.ext.web.handler.impl.AuthHandlerImpl.<init>:(Lio/vertx/ext/auth/AuthProvider;Ljava/lang/String;)V
         1: .line 66
            aload 0 /* this */
            aload 3 /* type */
            putfield io.vertx.ext.web.handler.impl.AuthorizationAuthHandler.type:Lio/vertx/ext/web/handler/impl/AuthorizationAuthHandler$Type;
         2: .line 67
            return
        end local 3 // io.vertx.ext.web.handler.impl.AuthorizationAuthHandler$Type type
        end local 2 // java.lang.String realm
        end local 1 // io.vertx.ext.auth.AuthProvider authProvider
        end local 0 // io.vertx.ext.web.handler.impl.AuthorizationAuthHandler this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lio/vertx/ext/web/handler/impl/AuthorizationAuthHandler;
            0    3     1  authProvider  Lio/vertx/ext/auth/AuthProvider;
            0    3     2         realm  Ljava/lang/String;
            0    3     3          type  Lio/vertx/ext/web/handler/impl/AuthorizationAuthHandler$Type;
    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.AuthorizationAuthHandler 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 71
            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 72
            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 74
            aload 5 /* authorization */
            ifnonnull 8
         3: .line 75
            iload 2 /* optional */
            ifeq 6
         4: .line 77
            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 78
            goto 7
         6: .line 79
      StackMap locals: io.vertx.core.http.HttpServerRequest java.lang.String
      StackMap stack:
            aload 3 /* handler */
            getstatic io.vertx.ext.web.handler.impl.AuthorizationAuthHandler.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 81
      StackMap locals:
      StackMap stack:
            return
         8: .line 85
      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 87
            iload 6 /* idx */
            ifgt 12
        10: .line 88
            aload 3 /* handler */
            getstatic io.vertx.ext.web.handler.impl.AuthorizationAuthHandler.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 89
            return
        12: .line 92
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.web.handler.impl.AuthorizationAuthHandler.type:Lio/vertx/ext/web/handler/impl/AuthorizationAuthHandler$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.AuthorizationAuthHandler$Type.is:(Ljava/lang/String;)Z
            ifne 15
        13: .line 93
            aload 3 /* handler */
            getstatic io.vertx.ext.web.handler.impl.AuthorizationAuthHandler.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 94
            return
        15: .line 97
      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 98
            goto 19
      StackMap locals: io.vertx.ext.web.handler.impl.AuthorizationAuthHandler 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 99
            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 101
      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.AuthorizationAuthHandler this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   20     0           this  Lio/vertx/ext/web/handler/impl/AuthorizationAuthHandler;
            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   
}
SourceFile: "AuthorizationAuthHandler.java"
NestMembers:
  io.vertx.ext.web.handler.impl.AuthorizationAuthHandler$Type
InnerClasses:
  final Type = io.vertx.ext.web.handler.impl.AuthorizationAuthHandler$Type of io.vertx.ext.web.handler.impl.AuthorizationAuthHandler