Package io.vertx.mutiny.ext.web.handler
Interface AuthenticationHandler
-
- All Superinterfaces:
Consumer<RoutingContext>,io.vertx.core.Handler<RoutingContext>
- All Known Implementing Classes:
APIKeyHandler,BasicAuthHandler,ChainAuthHandler,DigestAuthHandler,JWTAuthHandler,OAuth2AuthHandler,RedirectAuthHandler,SimpleAuthenticationHandler,WebAuthnHandler
public interface AuthenticationHandler extends io.vertx.core.Handler<RoutingContext>, Consumer<RoutingContext>
Base interface for auth handlers.An auth handler allows your application to provide authentication support.
An Auth handler may require a
NOTE: This class has been automatically generated from theSessionHandlerto be on the routing chain before it.originalnon Mutiny-ified interface using Vert.x codegen.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidaccept(RoutingContext item)io.vertx.ext.web.handler.AuthenticationHandlergetDelegate()voidhandle(RoutingContext arg0)static AuthenticationHandlernewInstance(io.vertx.ext.web.handler.AuthenticationHandler arg)
-
-
-
Method Detail
-
getDelegate
io.vertx.ext.web.handler.AuthenticationHandler getDelegate()
-
handle
void handle(RoutingContext arg0)
- Specified by:
handlein interfaceio.vertx.core.Handler<RoutingContext>
-
accept
default void accept(RoutingContext item)
- Specified by:
acceptin interfaceConsumer<RoutingContext>
-
newInstance
static AuthenticationHandler newInstance(io.vertx.ext.web.handler.AuthenticationHandler arg)
-
-