Interface InputTrustHandler
-
- All Superinterfaces:
Handler<RoutingContext>
- All Known Implementing Classes:
CSRFHandler
public interface InputTrustHandler extends Handler<RoutingContext>
Base input trust interface for handlers that verify the trust of the request. Do not confuse trust and authorization. Trusted input by means ofCross-Site Request Forgeryas an example, gives the application guarantees about the integrity of the data. It does not replace properAuthorizationHandlerchecks. NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description InputTrustHandlergetDelegate()voidhandle(RoutingContext event)Something has happened, so handle it.static InputTrustHandlernewInstance(InputTrustHandler arg)
-
-
-
Method Detail
-
getDelegate
InputTrustHandler 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 InputTrustHandler newInstance(InputTrustHandler arg)
-
-