Interface AuthenticationHandler
- 
- All Superinterfaces:
- Handler<RoutingContext>,- io.vertx.lang.rx.RxDelegate
 - All Known Implementing Classes:
- APIKeyHandler,- BasicAuthHandler,- ChainAuthHandler,- DigestAuthHandler,- FormLoginHandler,- JWTAuthHandler,- OAuth2AuthHandler,- OtpAuthHandler,- RedirectAuthHandler,- SimpleAuthenticationHandler,- WebAuthn4JHandler
 
 public interface AuthenticationHandler extends io.vertx.lang.rx.RxDelegate, Handler<RoutingContext> Base interface for auth handlers.An auth handler allows your application to provide authentication support. An Auth handler may require a SessionHandlerto be on the routing chain before it.NOTE: This class has been automatically generated from the originalnon RX-ified interface using Vert.x codegen.
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description AuthenticationHandlergetDelegate()voidhandle(RoutingContext event)Something has happened, so handle it.static AuthenticationHandlernewInstance(AuthenticationHandler arg)
 
- 
- 
- 
Method Detail- 
getDelegateAuthenticationHandler getDelegate() - Specified by:
- getDelegatein interface- io.vertx.lang.rx.RxDelegate
 
 - 
handlevoid handle(RoutingContext event) Something has happened, so handle it.- Specified by:
- handlein interface- Handler<RoutingContext>
- Parameters:
- event- the event to handle
 
 - 
newInstancestatic AuthenticationHandler newInstance(AuthenticationHandler arg) 
 
- 
 
-