Package io.vertx.mutiny.ext.web.handler
Interface InputTrustHandler
- All Superinterfaces:
Consumer<RoutingContext>,io.vertx.core.Handler<RoutingContext>,MutinyDelegate
- All Known Implementing Classes:
CSRFHandler,InputTrustHandler.InputTrustHandlerImpl
public interface InputTrustHandler
extends io.vertx.core.Handler<RoutingContext>, Consumer<RoutingContext>, MutinyDelegate
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.
- Author:
- Paulo Lopes
- See Also:
-
InputTrustHandler
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(RoutingContext item) Handle an item.io.vertx.ext.web.handler.InputTrustHandlervoidhandle(RoutingContext item) Handle an item.static InputTrustHandlernewInstance(io.vertx.ext.web.handler.InputTrustHandler delegate) Creates a new instance of theInputTrustHandler.
-
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.InputTrustHandler getDelegate()- Specified by:
getDelegatein interfaceMutinyDelegate- Returns:
- the delegate used by this Mutiny object of generated type
-
newInstance
Creates a new instance of theInputTrustHandler.
-