public class io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl extends io.vertx.ext.web.handler.impl.AuthHandlerImpl implements io.vertx.ext.web.handler.ChainAuthHandler
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl
  super_class: io.vertx.ext.web.handler.impl.AuthHandlerImpl
{
  private final java.util.List<io.vertx.ext.web.handler.AuthHandler> handlers;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lio/vertx/ext/web/handler/AuthHandler;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
         0: .line 20
            aload 0 /* this */
            aconst_null
            invokespecial io.vertx.ext.web.handler.impl.AuthHandlerImpl.<init>:(Lio/vertx/ext/auth/AuthProvider;)V
         1: .line 17
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl.handlers:Ljava/util/List;
         2: .line 21
            return
        end local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/web/handler/impl/ChainAuthHandlerImpl;

  public io.vertx.ext.web.handler.ChainAuthHandler append(io.vertx.ext.web.handler.AuthHandler);
    descriptor: (Lio/vertx/ext/web/handler/AuthHandler;)Lio/vertx/ext/web/handler/ChainAuthHandler;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
        start local 1 // io.vertx.ext.web.handler.AuthHandler other
         0: .line 25
            aload 0 /* this */
            getfield io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl.handlers:Ljava/util/List;
            aload 1 /* other */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 26
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.ext.web.handler.AuthHandler other
        end local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/ext/web/handler/impl/ChainAuthHandlerImpl;
            0    2     1  other  Lio/vertx/ext/web/handler/AuthHandler;
    MethodParameters:
       Name  Flags
      other  

  public boolean remove(io.vertx.ext.web.handler.AuthHandler);
    descriptor: (Lio/vertx/ext/web/handler/AuthHandler;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
        start local 1 // io.vertx.ext.web.handler.AuthHandler other
         0: .line 31
            aload 0 /* this */
            getfield io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl.handlers:Ljava/util/List;
            aload 1 /* other */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // io.vertx.ext.web.handler.AuthHandler other
        end local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/ext/web/handler/impl/ChainAuthHandlerImpl;
            0    1     1  other  Lio/vertx/ext/web/handler/AuthHandler;
    MethodParameters:
       Name  Flags
      other  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
         0: .line 36
            aload 0 /* this */
            getfield io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl.handlers:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         1: .line 37
            return
        end local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/web/handler/impl/ChainAuthHandlerImpl;

  public io.vertx.ext.web.handler.AuthHandler addAuthority(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/handler/AuthHandler;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
        start local 1 // java.lang.String authority
         0: .line 41
            aload 0 /* this */
            getfield io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl.handlers:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 3
      StackMap locals: io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl java.lang.String top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.ext.web.handler.AuthHandler
            astore 2 /* h */
        start local 2 // io.vertx.ext.web.handler.AuthHandler h
         2: .line 42
            aload 2 /* h */
            aload 1 /* authority */
            invokeinterface io.vertx.ext.web.handler.AuthHandler.addAuthority:(Ljava/lang/String;)Lio/vertx/ext/web/handler/AuthHandler;
            pop
        end local 2 // io.vertx.ext.web.handler.AuthHandler h
         3: .line 41
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         4: .line 44
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String authority
        end local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lio/vertx/ext/web/handler/impl/ChainAuthHandlerImpl;
            0    5     1  authority  Ljava/lang/String;
            2    3     2          h  Lio/vertx/ext/web/handler/AuthHandler;
    MethodParameters:
           Name  Flags
      authority  

  public io.vertx.ext.web.handler.AuthHandler addAuthorities(java.util.Set<java.lang.String>);
    descriptor: (Ljava/util/Set;)Lio/vertx/ext/web/handler/AuthHandler;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
        start local 1 // java.util.Set authorities
         0: .line 49
            aload 0 /* this */
            getfield io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl.handlers:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 3
      StackMap locals: io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl java.util.Set top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.ext.web.handler.AuthHandler
            astore 2 /* h */
        start local 2 // io.vertx.ext.web.handler.AuthHandler h
         2: .line 50
            aload 2 /* h */
            aload 1 /* authorities */
            invokeinterface io.vertx.ext.web.handler.AuthHandler.addAuthorities:(Ljava/util/Set;)Lio/vertx/ext/web/handler/AuthHandler;
            pop
        end local 2 // io.vertx.ext.web.handler.AuthHandler h
         3: .line 49
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         4: .line 52
            aload 0 /* this */
            areturn
        end local 1 // java.util.Set authorities
        end local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lio/vertx/ext/web/handler/impl/ChainAuthHandlerImpl;
            0    5     1  authorities  Ljava/util/Set<Ljava/lang/String;>;
            2    3     2            h  Lio/vertx/ext/web/handler/AuthHandler;
    Signature: (Ljava/util/Set<Ljava/lang/String;>;)Lio/vertx/ext/web/handler/AuthHandler;
    MethodParameters:
             Name  Flags
      authorities  

  public void parseCredentials(io.vertx.ext.web.RoutingContext, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonObject>>);
    descriptor: (Lio/vertx/ext/web/RoutingContext;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
        start local 1 // io.vertx.ext.web.RoutingContext context
        start local 2 // io.vertx.core.Handler handler
         0: .line 58
            aload 0 /* this */
            iconst_0
            aload 1 /* context */
            aconst_null
            aload 2 /* handler */
            invokevirtual io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl.iterate:(ILio/vertx/ext/web/RoutingContext;Lio/vertx/ext/web/handler/impl/HttpStatusException;Lio/vertx/core/Handler;)V
         1: .line 59
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.ext.web.RoutingContext context
        end local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/web/handler/impl/ChainAuthHandlerImpl;
            0    2     1  context  Lio/vertx/ext/web/RoutingContext;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/json/JsonObject;>;>;
    Signature: (Lio/vertx/ext/web/RoutingContext;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/json/JsonObject;>;>;)V
    MethodParameters:
         Name  Flags
      context  
      handler  

  private void iterate(int, io.vertx.ext.web.RoutingContext, io.vertx.ext.web.handler.impl.HttpStatusException, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonObject>>);
    descriptor: (ILio/vertx/ext/web/RoutingContext;Lio/vertx/ext/web/handler/impl/HttpStatusException;Lio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=6, args_size=5
        start local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
        start local 1 // int idx
        start local 2 // io.vertx.ext.web.RoutingContext ctx
        start local 3 // io.vertx.ext.web.handler.impl.HttpStatusException lastException
        start local 4 // io.vertx.core.Handler handler
         0: .line 63
            iload 1 /* idx */
            aload 0 /* this */
            getfield io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl.handlers:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmplt 3
         1: .line 65
            aload 4 /* handler */
            aload 3 /* lastException */
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 66
            return
         3: .line 70
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl.handlers:Ljava/util/List;
            iload 1 /* idx */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast io.vertx.ext.web.handler.AuthHandler
            astore 5 /* authHandler */
        start local 5 // io.vertx.ext.web.handler.AuthHandler authHandler
         4: .line 72
            aload 5 /* authHandler */
            aload 2 /* ctx */
            aload 0 /* this */
            iload 1 /* idx */
            aload 2 /* ctx */
            aload 4 /* handler */
            aload 5 /* authHandler */
            invokedynamic handle(Lio/vertx/ext/web/handler/impl/ChainAuthHandlerImpl;ILio/vertx/ext/web/RoutingContext;Lio/vertx/core/Handler;Lio/vertx/ext/web/handler/AuthHandler;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/ext/web/handler/impl/ChainAuthHandlerImpl.lambda$0(ILio/vertx/ext/web/RoutingContext;Lio/vertx/core/Handler;Lio/vertx/ext/web/handler/AuthHandler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.ext.web.handler.AuthHandler.parseCredentials:(Lio/vertx/ext/web/RoutingContext;Lio/vertx/core/Handler;)V
         5: .line 96
            return
        end local 5 // io.vertx.ext.web.handler.AuthHandler authHandler
        end local 4 // io.vertx.core.Handler handler
        end local 3 // io.vertx.ext.web.handler.impl.HttpStatusException lastException
        end local 2 // io.vertx.ext.web.RoutingContext ctx
        end local 1 // int idx
        end local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lio/vertx/ext/web/handler/impl/ChainAuthHandlerImpl;
            0    6     1            idx  I
            0    6     2            ctx  Lio/vertx/ext/web/RoutingContext;
            0    6     3  lastException  Lio/vertx/ext/web/handler/impl/HttpStatusException;
            0    6     4        handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/json/JsonObject;>;>;
            4    6     5    authHandler  Lio/vertx/ext/web/handler/AuthHandler;
    Signature: (ILio/vertx/ext/web/RoutingContext;Lio/vertx/ext/web/handler/impl/HttpStatusException;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/json/JsonObject;>;>;)V
    MethodParameters:
               Name  Flags
      idx            final
      ctx            final
      lastException  
      handler        

  private void lambda$0(int, io.vertx.ext.web.RoutingContext, io.vertx.core.Handler, io.vertx.ext.web.handler.AuthHandler, io.vertx.core.AsyncResult);
    descriptor: (ILio/vertx/ext/web/RoutingContext;Lio/vertx/core/Handler;Lio/vertx/ext/web/handler/AuthHandler;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=5, locals=7, args_size=6
        start local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
        start local 5 // io.vertx.core.AsyncResult res
         0: .line 73
            aload 5 /* res */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 8
         1: .line 74
            aload 5 /* res */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            instanceof io.vertx.ext.web.handler.impl.HttpStatusException
            ifeq 6
         2: .line 75
            aload 5 /* res */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            checkcast io.vertx.ext.web.handler.impl.HttpStatusException
            astore 6 /* exception */
        start local 6 // io.vertx.ext.web.handler.impl.HttpStatusException exception
         3: .line 76
            aload 6 /* exception */
            invokevirtual io.vertx.ext.web.handler.impl.HttpStatusException.getStatusCode:()I
            lookupswitch { // 4
                  302: 4
                  400: 4
                  401: 4
                  403: 4
              default: 6
          }
         4: .line 82
      StackMap locals: io.vertx.ext.web.handler.impl.HttpStatusException
      StackMap stack:
            aload 0 /* this */
            iload 1
            iconst_1
            iadd
            aload 2
            aload 6 /* exception */
            aload 3
            invokevirtual io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl.iterate:(ILio/vertx/ext/web/RoutingContext;Lio/vertx/ext/web/handler/impl/HttpStatusException;Lio/vertx/core/Handler;)V
         5: .line 83
            return
        end local 6 // io.vertx.ext.web.handler.impl.HttpStatusException exception
         6: .line 86
      StackMap locals:
      StackMap stack:
            aload 3
            aload 5 /* res */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            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 87
            return
         8: .line 91
      StackMap locals:
      StackMap stack:
            aload 4
            instanceof io.vertx.ext.web.handler.impl.AuthHandlerImpl
            ifeq 10
         9: .line 92
            aload 2
            ldc "io.vertx.ext.web.handler.AuthHandler.provider"
            aload 4
            checkcast io.vertx.ext.web.handler.impl.AuthHandlerImpl
            getfield io.vertx.ext.web.handler.impl.AuthHandlerImpl.authProvider:Lio/vertx/ext/auth/AuthProvider;
            invokeinterface io.vertx.ext.web.RoutingContext.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/ext/web/RoutingContext;
            pop
        10: .line 94
      StackMap locals:
      StackMap stack:
            aload 3
            aload 5 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.json.JsonObject
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        11: .line 95
            return
        end local 5 // io.vertx.core.AsyncResult res
        end local 0 // io.vertx.ext.web.handler.impl.ChainAuthHandlerImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lio/vertx/ext/web/handler/impl/ChainAuthHandlerImpl;
            0   12     5        res  Lio/vertx/core/AsyncResult<Lio/vertx/core/json/JsonObject;>;
            3    6     6  exception  Lio/vertx/ext/web/handler/impl/HttpStatusException;
}
SourceFile: "ChainAuthHandlerImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles