public abstract class io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl<T extends io.vertx.ext.auth.authentication.AuthenticationProvider> implements io.vertx.ext.web.handler.AuthenticationHandler
minor version: 0
major version: 59
flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
this_class: io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl
super_class: java.lang.Object
{
static final java.lang.String AUTH_PROVIDER_CONTEXT_KEY;
descriptor: Ljava/lang/String;
flags: (0x0018) ACC_STATIC, ACC_FINAL
ConstantValue: "io.vertx.ext.web.handler.AuthenticationHandler.provider"
static final io.vertx.ext.web.handler.impl.HttpStatusException UNAUTHORIZED;
descriptor: Lio/vertx/ext/web/handler/impl/HttpStatusException;
flags: (0x0018) ACC_STATIC, ACC_FINAL
static final io.vertx.ext.web.handler.impl.HttpStatusException BAD_REQUEST;
descriptor: Lio/vertx/ext/web/handler/impl/HttpStatusException;
flags: (0x0018) ACC_STATIC, ACC_FINAL
static final io.vertx.ext.web.handler.impl.HttpStatusException BAD_METHOD;
descriptor: Lio/vertx/ext/web/handler/impl/HttpStatusException;
flags: (0x0018) ACC_STATIC, ACC_FINAL
protected final java.lang.String realm;
descriptor: Ljava/lang/String;
flags: (0x0014) ACC_PROTECTED, ACC_FINAL
protected final T authProvider;
descriptor: Lio/vertx/ext/auth/authentication/AuthenticationProvider;
flags: (0x0014) ACC_PROTECTED, ACC_FINAL
Signature: TT;
static void <clinit>();
descriptor: ()V
flags: (0x0008) ACC_STATIC
Code:
stack=3, locals=0, args_size=0
0: new io.vertx.ext.web.handler.impl.HttpStatusException
dup
sipush 401
invokespecial io.vertx.ext.web.handler.impl.HttpStatusException.<init>:(I)V
putstatic io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.UNAUTHORIZED:Lio/vertx/ext/web/handler/impl/HttpStatusException;
1: new io.vertx.ext.web.handler.impl.HttpStatusException
dup
sipush 400
invokespecial io.vertx.ext.web.handler.impl.HttpStatusException.<init>:(I)V
putstatic io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.BAD_REQUEST:Lio/vertx/ext/web/handler/impl/HttpStatusException;
2: new io.vertx.ext.web.handler.impl.HttpStatusException
dup
sipush 405
invokespecial io.vertx.ext.web.handler.impl.HttpStatusException.<init>:(I)V
putstatic io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.BAD_METHOD:Lio/vertx/ext/web/handler/impl/HttpStatusException;
return
LocalVariableTable:
Start End Slot Name Signature
public void <init>();
descriptor: (Lio/vertx/ext/auth/authentication/AuthenticationProvider;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
aconst_null
invokespecial io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.<init>:(Lio/vertx/ext/auth/authentication/AuthenticationProvider;Ljava/lang/String;)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/ext/web/handler/impl/AuthenticationHandlerImpl<TT;>;
0 2 1 authProvider TT;
Signature: (TT;)V
MethodParameters:
Name Flags
authProvider
public void <init>(T, java.lang.String);
descriptor: (Lio/vertx/ext/auth/authentication/AuthenticationProvider;Ljava/lang/String;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
aload 1
putfield io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.authProvider:Lio/vertx/ext/auth/authentication/AuthenticationProvider;
2: aload 0
aload 2
ifnonnull 3
aconst_null
goto 5
StackMap locals: io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl io.vertx.ext.auth.authentication.AuthenticationProvider java.lang.String
StackMap stack: io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl
3: aload 2
4: ldc "\""
ldc "\\\""
invokevirtual java.lang.String.replaceAll:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
5: StackMap locals: io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl io.vertx.ext.auth.authentication.AuthenticationProvider java.lang.String
StackMap stack: io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl java.lang.String
putfield io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.realm:Ljava/lang/String;
6: aload 0
getfield io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.realm:Ljava/lang/String;
ifnull 9
7: aload 0
getfield io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.realm:Ljava/lang/String;
bipush 13
invokevirtual java.lang.String.indexOf:(I)I
iconst_m1
if_icmpne 8
aload 0
getfield io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.realm:Ljava/lang/String;
bipush 10
invokevirtual java.lang.String.indexOf:(I)I
iconst_m1
if_icmpeq 9
8: StackMap locals:
StackMap stack:
new java.lang.IllegalArgumentException
dup
ldc "Not allowed [\\r|\\n] characters detected on realm name"
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
9: StackMap locals:
StackMap stack:
return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 10 0 this Lio/vertx/ext/web/handler/impl/AuthenticationHandlerImpl<TT;>;
0 10 1 authProvider TT;
0 10 2 realm Ljava/lang/String;
Signature: (TT;Ljava/lang/String;)V
MethodParameters:
Name Flags
authProvider
realm
public void handle(io.vertx.ext.web.RoutingContext);
descriptor: (Lio/vertx/ext/web/RoutingContext;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokevirtual io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.handlePreflight:(Lio/vertx/ext/web/RoutingContext;)Z
ifeq 2
1: return
2: StackMap locals:
StackMap stack:
aload 1
invokeinterface io.vertx.ext.web.RoutingContext.user:()Lio/vertx/ext/auth/User;
astore 2
start local 2 3: aload 2
ifnull 6
4: aload 0
aload 1
invokevirtual io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.postAuthentication:(Lio/vertx/ext/web/RoutingContext;)V
5: return
6: StackMap locals: io.vertx.ext.auth.User
StackMap stack:
aload 1
invokeinterface io.vertx.ext.web.RoutingContext.request:()Lio/vertx/core/http/HttpServerRequest;
invokeinterface io.vertx.core.http.HttpServerRequest.pause:()Lio/vertx/core/http/HttpServerRequest;
pop
7: aload 0
aload 1
aload 0
aload 1
invokedynamic handle(Lio/vertx/ext/web/handler/impl/AuthenticationHandlerImpl;Lio/vertx/ext/web/RoutingContext;)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/AuthenticationHandlerImpl.lambda$0(Lio/vertx/ext/web/RoutingContext;Lio/vertx/core/AsyncResult;)V (7)
(Lio/vertx/core/AsyncResult;)V
invokevirtual io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.parseCredentials:(Lio/vertx/ext/web/RoutingContext;Lio/vertx/core/Handler;)V
8: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 9 0 this Lio/vertx/ext/web/handler/impl/AuthenticationHandlerImpl<TT;>;
0 9 1 ctx Lio/vertx/ext/web/RoutingContext;
3 9 2 user Lio/vertx/ext/auth/User;
MethodParameters:
Name Flags
ctx
protected void processException(io.vertx.ext.web.RoutingContext, java.lang.Throwable);
descriptor: (Lio/vertx/ext/web/RoutingContext;Ljava/lang/Throwable;)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=4, locals=6, args_size=3
start local 0 start local 1 start local 2 0: aload 2
ifnull 18
1: aload 2
instanceof io.vertx.ext.web.handler.impl.HttpStatusException
ifeq 18
2: aload 2
checkcast io.vertx.ext.web.handler.impl.HttpStatusException
invokevirtual io.vertx.ext.web.handler.impl.HttpStatusException.getStatusCode:()I
istore 3
start local 3 3: aload 2
checkcast io.vertx.ext.web.handler.impl.HttpStatusException
invokevirtual io.vertx.ext.web.handler.impl.HttpStatusException.getPayload:()Ljava/lang/String;
astore 4
start local 4 4: iload 3
lookupswitch { // 2
302: 5
401: 10
default: 16
}
5: StackMap locals: int java.lang.String
StackMap stack:
aload 1
invokeinterface io.vertx.ext.web.RoutingContext.response:()Lio/vertx/core/http/HttpServerResponse;
6: getstatic io.vertx.core.http.HttpHeaders.LOCATION:Ljava/lang/CharSequence;
aload 4
invokeinterface io.vertx.core.http.HttpServerResponse.putHeader:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Lio/vertx/core/http/HttpServerResponse;
7: sipush 302
invokeinterface io.vertx.core.http.HttpServerResponse.setStatusCode:(I)Lio/vertx/core/http/HttpServerResponse;
8: new java.lang.StringBuilder
dup
ldc "Redirecting to "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 4
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;
invokeinterface io.vertx.core.http.HttpServerResponse.end:(Ljava/lang/String;)Lio/vertx/core/Future;
pop
9: return
10: StackMap locals:
StackMap stack:
aload 0
aload 1
invokevirtual io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.authenticateHeader:(Lio/vertx/ext/web/RoutingContext;)Ljava/lang/String;
astore 5
start local 5 11: aload 5
ifnull 14
12: aload 1
invokeinterface io.vertx.ext.web.RoutingContext.response:()Lio/vertx/core/http/HttpServerResponse;
13: ldc "WWW-Authenticate"
aload 5
invokeinterface io.vertx.core.http.HttpServerResponse.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
pop
14: StackMap locals: java.lang.String
StackMap stack:
aload 1
sipush 401
aload 2
invokeinterface io.vertx.ext.web.RoutingContext.fail:(ILjava/lang/Throwable;)V
15: return
end local 5 16: StackMap locals:
StackMap stack:
aload 1
iload 3
aload 2
invokeinterface io.vertx.ext.web.RoutingContext.fail:(ILjava/lang/Throwable;)V
17: return
end local 4 end local 3 18: StackMap locals:
StackMap stack:
aload 1
aload 2
invokeinterface io.vertx.ext.web.RoutingContext.fail:(Ljava/lang/Throwable;)V
19: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 20 0 this Lio/vertx/ext/web/handler/impl/AuthenticationHandlerImpl<TT;>;
0 20 1 ctx Lio/vertx/ext/web/RoutingContext;
0 20 2 exception Ljava/lang/Throwable;
3 18 3 statusCode I
4 18 4 payload Ljava/lang/String;
11 16 5 header Ljava/lang/String;
MethodParameters:
Name Flags
ctx
exception
private boolean handlePreflight(io.vertx.ext.web.RoutingContext);
descriptor: (Lio/vertx/ext/web/RoutingContext;)Z
flags: (0x0002) ACC_PRIVATE
Code:
stack=2, locals=8, args_size=2
start local 0 start local 1 0: aload 1
invokeinterface io.vertx.ext.web.RoutingContext.request:()Lio/vertx/core/http/HttpServerRequest;
astore 2
start local 2 1: aload 2
invokeinterface io.vertx.core.http.HttpServerRequest.method:()Lio/vertx/core/http/HttpMethod;
getstatic io.vertx.core.http.HttpMethod.OPTIONS:Lio/vertx/core/http/HttpMethod;
if_acmpne 11
2: aload 1
invokeinterface io.vertx.ext.web.RoutingContext.request:()Lio/vertx/core/http/HttpServerRequest;
getstatic io.vertx.core.http.HttpHeaders.ACCESS_CONTROL_REQUEST_HEADERS:Ljava/lang/CharSequence;
invokeinterface io.vertx.core.http.HttpServerRequest.getHeader:(Ljava/lang/CharSequence;)Ljava/lang/String;
astore 3
start local 3 3: aload 3
ifnull 11
4: aload 3
ldc ","
invokevirtual java.lang.String.split:(Ljava/lang/String;)[Ljava/lang/String;
dup
astore 7
arraylength
istore 6
iconst_0
istore 5
goto 10
StackMap locals: io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl io.vertx.ext.web.RoutingContext io.vertx.core.http.HttpServerRequest java.lang.String top int int java.lang.String[]
StackMap stack:
5: aload 7
iload 5
aaload
astore 4
start local 4 6: aload 4
ldc "Authorization"
invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
ifeq 9
7: aload 1
invokeinterface io.vertx.ext.web.RoutingContext.next:()V
8: iconst_1
ireturn
end local 4 9: StackMap locals:
StackMap stack:
iinc 5 1
StackMap locals:
StackMap stack:
10: iload 5
iload 6
if_icmplt 5
end local 3 11: StackMap locals: io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl io.vertx.ext.web.RoutingContext io.vertx.core.http.HttpServerRequest
StackMap stack:
iconst_0
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 12 0 this Lio/vertx/ext/web/handler/impl/AuthenticationHandlerImpl<TT;>;
0 12 1 ctx Lio/vertx/ext/web/RoutingContext;
1 12 2 request Lio/vertx/core/http/HttpServerRequest;
3 11 3 accessControlRequestHeader Ljava/lang/String;
6 9 4 ctrlReq Ljava/lang/String;
MethodParameters:
Name Flags
ctx
protected io.vertx.ext.auth.authentication.AuthenticationProvider getAuthProvider(io.vertx.ext.web.RoutingContext);
descriptor: (Lio/vertx/ext/web/RoutingContext;)Lio/vertx/ext/auth/authentication/AuthenticationProvider;
flags: (0x0004) ACC_PROTECTED
Code:
stack=2, locals=3, args_size=2
start local 0 start local 1 0: aload 1
ldc "io.vertx.ext.web.handler.AuthenticationHandler.provider"
invokeinterface io.vertx.ext.web.RoutingContext.get:(Ljava/lang/String;)Ljava/lang/Object;
checkcast io.vertx.ext.auth.authentication.AuthenticationProvider
astore 2
start local 2 1: aload 2
ifnull 5
2: aload 2
3: areturn
end local 2 4: StackMap locals:
StackMap stack: java.lang.RuntimeException
pop
5: StackMap locals:
StackMap stack:
aload 0
getfield io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.authProvider:Lio/vertx/ext/auth/authentication/AuthenticationProvider;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lio/vertx/ext/web/handler/impl/AuthenticationHandlerImpl<TT;>;
0 6 1 ctx Lio/vertx/ext/web/RoutingContext;
1 4 2 provider Lio/vertx/ext/auth/authentication/AuthenticationProvider;
Exception table:
from to target type
0 3 4 Class java.lang.RuntimeException
MethodParameters:
Name Flags
ctx
public void handle(java.lang.Object);
descriptor: (Ljava/lang/Object;)V
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast io.vertx.ext.web.RoutingContext
invokevirtual io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.handle:(Lio/vertx/ext/web/RoutingContext;)V
return
LocalVariableTable:
Start End Slot Name Signature
private void lambda$0(io.vertx.ext.web.RoutingContext, io.vertx.core.AsyncResult);
descriptor: (Lio/vertx/ext/web/RoutingContext;Lio/vertx/core/AsyncResult;)V
flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 2 0: aload 2
invokeinterface io.vertx.core.AsyncResult.failed:()Z
ifeq 4
1: aload 1
invokeinterface io.vertx.ext.web.RoutingContext.request:()Lio/vertx/core/http/HttpServerRequest;
invokeinterface io.vertx.core.http.HttpServerRequest.resume:()Lio/vertx/core/http/HttpServerRequest;
pop
2: aload 0
aload 1
aload 2
invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
invokevirtual io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.processException:(Lio/vertx/ext/web/RoutingContext;Ljava/lang/Throwable;)V
3: return
4: StackMap locals:
StackMap stack:
aload 0
aload 1
invokevirtual io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.getAuthProvider:(Lio/vertx/ext/web/RoutingContext;)Lio/vertx/ext/auth/authentication/AuthenticationProvider;
aload 2
invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
checkcast io.vertx.ext.auth.authentication.Credentials
aload 0
aload 1
invokedynamic handle(Lio/vertx/ext/web/handler/impl/AuthenticationHandlerImpl;Lio/vertx/ext/web/RoutingContext;)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/AuthenticationHandlerImpl.lambda$1(Lio/vertx/ext/web/RoutingContext;Lio/vertx/core/AsyncResult;)V (7)
(Lio/vertx/core/AsyncResult;)V
invokeinterface io.vertx.ext.auth.authentication.AuthenticationProvider.authenticate:(Lio/vertx/ext/auth/authentication/Credentials;Lio/vertx/core/Handler;)V
5: return
end local 2 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lio/vertx/ext/web/handler/impl/AuthenticationHandlerImpl<TT;>;
0 6 2 res Lio/vertx/core/AsyncResult<Lio/vertx/ext/auth/authentication/Credentials;>;
private void lambda$1(io.vertx.ext.web.RoutingContext, io.vertx.core.AsyncResult);
descriptor: (Lio/vertx/ext/web/RoutingContext;Lio/vertx/core/AsyncResult;)V
flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
Code:
stack=6, locals=5, args_size=3
start local 0 start local 2 0: aload 2
invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
ifeq 9
1: aload 2
invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
checkcast io.vertx.ext.auth.User
astore 3
start local 3 2: aload 1
aload 3
invokeinterface io.vertx.ext.web.RoutingContext.setUser:(Lio/vertx/ext/auth/User;)V
3: aload 1
invokeinterface io.vertx.ext.web.RoutingContext.session:()Lio/vertx/ext/web/Session;
astore 4
start local 4 4: aload 4
ifnull 6
5: aload 4
invokeinterface io.vertx.ext.web.Session.regenerateId:()Lio/vertx/ext/web/Session;
pop
6: StackMap locals: io.vertx.ext.auth.User io.vertx.ext.web.Session
StackMap stack:
aload 1
invokeinterface io.vertx.ext.web.RoutingContext.request:()Lio/vertx/core/http/HttpServerRequest;
invokeinterface io.vertx.core.http.HttpServerRequest.resume:()Lio/vertx/core/http/HttpServerRequest;
pop
7: aload 0
aload 1
invokevirtual io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.postAuthentication:(Lio/vertx/ext/web/RoutingContext;)V
end local 4 end local 3 8: goto 19
9: StackMap locals:
StackMap stack:
aload 0
aload 1
invokevirtual io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.authenticateHeader:(Lio/vertx/ext/web/RoutingContext;)Ljava/lang/String;
astore 3
start local 3 10: aload 3
ifnull 13
11: aload 1
invokeinterface io.vertx.ext.web.RoutingContext.response:()Lio/vertx/core/http/HttpServerResponse;
12: ldc "WWW-Authenticate"
aload 3
invokeinterface io.vertx.core.http.HttpServerResponse.putHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/http/HttpServerResponse;
pop
13: StackMap locals: java.lang.String
StackMap stack:
aload 2
invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
instanceof io.vertx.ext.web.handler.impl.HttpStatusException
ifeq 17
14: aload 1
invokeinterface io.vertx.ext.web.RoutingContext.request:()Lio/vertx/core/http/HttpServerRequest;
invokeinterface io.vertx.core.http.HttpServerRequest.resume:()Lio/vertx/core/http/HttpServerRequest;
pop
15: aload 0
aload 1
aload 2
invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
invokevirtual io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.processException:(Lio/vertx/ext/web/RoutingContext;Ljava/lang/Throwable;)V
16: goto 19
17: StackMap locals:
StackMap stack:
aload 1
invokeinterface io.vertx.ext.web.RoutingContext.request:()Lio/vertx/core/http/HttpServerRequest;
invokeinterface io.vertx.core.http.HttpServerRequest.resume:()Lio/vertx/core/http/HttpServerRequest;
pop
18: aload 0
aload 1
new io.vertx.ext.web.handler.impl.HttpStatusException
dup
sipush 401
aload 2
invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
invokespecial io.vertx.ext.web.handler.impl.HttpStatusException.<init>:(ILjava/lang/Throwable;)V
invokevirtual io.vertx.ext.web.handler.impl.AuthenticationHandlerImpl.processException:(Lio/vertx/ext/web/RoutingContext;Ljava/lang/Throwable;)V
end local 3 19: StackMap locals:
StackMap stack:
return
end local 2 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 20 0 this Lio/vertx/ext/web/handler/impl/AuthenticationHandlerImpl<TT;>;
0 20 2 authN Lio/vertx/core/AsyncResult<Lio/vertx/ext/auth/User;>;
2 8 3 authenticated Lio/vertx/ext/auth/User;
4 8 4 session Lio/vertx/ext/web/Session;
10 19 3 header Ljava/lang/String;
}
Signature: <T::Lio/vertx/ext/auth/authentication/AuthenticationProvider;>Ljava/lang/Object;Lio/vertx/ext/web/handler/AuthenticationHandler;
SourceFile: "AuthenticationHandlerImpl.java"
InnerClasses:
public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles