Interface HTTPOperationRequestValidationHandler
-
- All Superinterfaces:
Handler<RoutingContext>,ValidationHandler
- All Known Implementing Classes:
OpenAPI3RequestValidationHandler
public interface HTTPOperationRequestValidationHandler extends ValidationHandler, Handler<RoutingContext>
Base interface for HTTP request validation with API specification 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 Deprecated Methods Modifier and Type Method Description HTTPOperationRequestValidationHandlergetDelegate()voidhandle(RoutingContext event)Deprecated.static HTTPOperationRequestValidationHandlernewInstance(HTTPOperationRequestValidationHandler arg)voidparseOperationSpec()Deprecated.
-
-
-
Method Detail
-
getDelegate
HTTPOperationRequestValidationHandler getDelegate()
- Specified by:
getDelegatein interfaceValidationHandler
-
handle
@Deprecated void handle(RoutingContext event)
Deprecated.Something has happened, so handle it.- Specified by:
handlein interfaceHandler<RoutingContext>- Specified by:
handlein interfaceValidationHandler- Parameters:
event- the event to handle
-
parseOperationSpec
@Deprecated void parseOperationSpec()
Deprecated.Function that parse the operation specification and generate validation rules
-
newInstance
static HTTPOperationRequestValidationHandler newInstance(HTTPOperationRequestValidationHandler arg)
-
-