Interface InputTrustHandler

All Superinterfaces:
Consumer<RoutingContext>, io.vertx.core.Handler<RoutingContext>, io.smallrye.mutiny.vertx.MutinyDelegate
All Known Implementing Classes:
CSRFHandler

public interface InputTrustHandler extends io.smallrye.mutiny.vertx.MutinyDelegate, io.vertx.core.Handler<RoutingContext>, Consumer<RoutingContext>
Base input trust interface for handlers that verify the trust of the request. Do not confuse trust and authorization. Trusted input by means of Cross-Site Request Forgery as an example, gives the application guarantees about the integrity of the data. It does not replace proper AuthorizationHandler checks.

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.InputTrustHandler 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 InputTrustHandler newInstance(io.vertx.ext.web.handler.InputTrustHandler arg)