Interface ValidationHandler
-
- All Superinterfaces:
Handler<RoutingContext>
- All Known Subinterfaces:
HTTPOperationRequestValidationHandler
- All Known Implementing Classes:
HTTPRequestValidationHandler,OpenAPI3RequestValidationHandler
public interface ValidationHandler extends Handler<RoutingContext>
Base interface for validation. For basic HTTP Request Validator, useHTTPRequestValidationHandlerNOTE: 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 Deprecated Methods Modifier and Type Method Description ValidationHandlergetDelegate()voidhandle(RoutingContext event)Deprecated.static ValidationHandlernewInstance(ValidationHandler arg)
-
-
-
Method Detail
-
getDelegate
ValidationHandler getDelegate()
-
handle
@Deprecated void handle(RoutingContext event)
Deprecated.Something has happened, so handle it.- Specified by:
handlein interfaceHandler<RoutingContext>- Parameters:
event- the event to handle
-
newInstance
static ValidationHandler newInstance(ValidationHandler arg)
-
-