Interface AuthenticationHandler
-
- All Superinterfaces:
Handler<RoutingContext>
- All Known Implementing Classes:
APIKeyHandler,BasicAuthHandler,ChainAuthHandler,DigestAuthHandler,FormLoginHandler,JWTAuthHandler,OAuth2AuthHandler,OtpAuthHandler,RedirectAuthHandler,SimpleAuthenticationHandler,WebAuthnHandler
public interface AuthenticationHandler extends Handler<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 RX-ified interface using Vert.x codegen.
-
-
Method Summary
All 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
-
getDelegate
AuthenticationHandler getDelegate()
-
handle
void handle(RoutingContext event)
Something has happened, so handle it.- Specified by:
handlein interfaceHandler<RoutingContext>- Parameters:
event- the event to handle
-
newInstance
static AuthenticationHandler newInstance(AuthenticationHandler arg)
-
-