Package io.vertx.mutiny.ext.web.handler
Interface AuthenticationHandler
- All Superinterfaces:
Consumer<RoutingContext>,io.vertx.core.Handler<RoutingContext>,MutinyDelegate
- All Known Implementing Classes:
APIKeyHandler,AuthenticationHandler.AuthenticationHandlerImpl,BasicAuthHandler,ChainAuthHandler,DigestAuthHandler,FormLoginHandler,JWTAuthHandler,OAuth2AuthHandler,OtpAuthHandler,RedirectAuthHandler,SimpleAuthenticationHandler,WebAuthn4JHandler
public interface AuthenticationHandler
extends io.vertx.core.Handler<RoutingContext>, Consumer<RoutingContext>, MutinyDelegate
Base interface for auth handlers.
An auth handler allows your application to provide authentication support.
An Auth handler may require a SessionHandler to be on the routing chain before it.
NOTE: This class has been automatically generated from the original non Mutiny-ified interface.
- Author:
- Tim Fox, Paulo Lopes
- See Also:
-
AuthenticationHandler
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic class -
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(RoutingContext item) Handle an item.io.vertx.ext.web.handler.AuthenticationHandlervoidhandle(RoutingContext item) Handle an item.static AuthenticationHandlernewInstance(io.vertx.ext.web.handler.AuthenticationHandler delegate) Creates a new instance of theAuthenticationHandler.
-
Method Details
-
accept
Handle an item. This method is generated from theoriginalmethod."- Specified by:
acceptin interfaceConsumer<RoutingContext>
-
handle
Handle an item. This method is generated from theoriginalmethod."- Specified by:
handlein interfaceio.vertx.core.Handler<RoutingContext>
-
getDelegate
io.vertx.ext.web.handler.AuthenticationHandler getDelegate()- Specified by:
getDelegatein interfaceMutinyDelegate- Returns:
- the delegate used by this Mutiny object of generated type
-
newInstance
Creates a new instance of theAuthenticationHandler.
-