Interface AuthenticationHandler

All Superinterfaces:
Consumer<RoutingContext>, io.vertx.core.Handler<RoutingContext>, io.smallrye.mutiny.vertx.MutinyDelegate
All Known Implementing Classes:
APIKeyHandler, BasicAuthHandler, ChainAuthHandler, DigestAuthHandler, FormLoginHandler, JWTAuthHandler, OAuth2AuthHandler, OtpAuthHandler, RedirectAuthHandler, SimpleAuthenticationHandler, WebAuthnHandler

public interface AuthenticationHandler extends io.smallrye.mutiny.vertx.MutinyDelegate, 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 SessionHandler to be on the routing chain before it.

NOTE: This class has been automatically generated from the original non Mutiny-ified interface using Vert.x codegen.

  • Method Details

    • getDelegate

      io.vertx.ext.web.handler.AuthenticationHandler getDelegate()
      Specified by:
      getDelegate in interface io.smallrye.mutiny.vertx.MutinyDelegate
    • handle

      void handle(RoutingContext arg0)
      Specified by:
      handle in interface io.vertx.core.Handler<RoutingContext>
    • accept

      default void accept(RoutingContext item)
      Specified by:
      accept in interface Consumer<RoutingContext>
    • newInstance

      static AuthenticationHandler newInstance(io.vertx.ext.web.handler.AuthenticationHandler arg)