Uses of Interface
io.vertx.mutiny.ext.web.handler.AuthenticationHandler
-
Packages that use AuthenticationHandler Package Description io.vertx.mutiny.ext.web.handler io.vertx.mutiny.ext.web.openapi -
-
Uses of AuthenticationHandler in io.vertx.mutiny.ext.web.handler
Classes in io.vertx.mutiny.ext.web.handler that implement AuthenticationHandler Modifier and Type Class Description class
APIKeyHandler
An authentication handler that provides API Key support.class
BasicAuthHandler
An auth handler that provides HTTP Basic Authentication support.class
ChainAuthHandler
An auth handler that chains to a sequence of handlers.class
DigestAuthHandler
An auth handler that provides HTTP Basic Authentication support.class
JWTAuthHandler
An auth handler that provides JWT Authentication support.class
OAuth2AuthHandler
An auth handler that provides OAuth2 Authentication support.class
RedirectAuthHandler
An auth handler that's used to handle auth by redirecting user to a custom login page.class
SimpleAuthenticationHandler
A user customizable authentication handler.class
WebAuthnHandler
An auth handler that provides FIDO2 WebAuthN Relay Party support.Methods in io.vertx.mutiny.ext.web.handler that return AuthenticationHandler Modifier and Type Method Description static AuthenticationHandler
AuthenticationHandler. newInstance(io.vertx.ext.web.handler.AuthenticationHandler arg)
Methods in io.vertx.mutiny.ext.web.handler with parameters of type AuthenticationHandler Modifier and Type Method Description ChainAuthHandler
ChainAuthHandler. add(AuthenticationHandler other)
-
Uses of AuthenticationHandler in io.vertx.mutiny.ext.web.openapi
Methods in io.vertx.mutiny.ext.web.openapi with parameters of type AuthenticationHandler Modifier and Type Method Description RouterBuilder
RouterBuilder. securityHandler(String securitySchemeName, AuthenticationHandler handler)
Method parameters in io.vertx.mutiny.ext.web.openapi with type arguments of type AuthenticationHandler Modifier and Type Method Description io.smallrye.mutiny.Uni<RouterBuilder>
SecurityScheme. bind(Function<io.vertx.core.json.JsonObject,io.smallrye.mutiny.Uni<AuthenticationHandler>> factory)
RouterBuilder
SecurityScheme. bindAndAwait(Function<io.vertx.core.json.JsonObject,io.smallrye.mutiny.Uni<AuthenticationHandler>> factory)
void
SecurityScheme. bindAndForget(Function<io.vertx.core.json.JsonObject,io.smallrye.mutiny.Uni<AuthenticationHandler>> factory)
RouterBuilder
SecurityScheme. bindBlocking(Function<io.vertx.core.json.JsonObject,AuthenticationHandler> factory)
-