interface ValidationHandler : Handler<RoutingContext>
Base interface for validation. For basic HTTP Request Validator, use io.vertx.rxjava.ext.web.api.validation.HTTPRequestValidationHandler NOTE: This class has been automatically generated from the io.vertx.ext.web.api.validation.ValidationHandler non RX-ified interface using Vert.x codegen.
abstract fun getDelegate(): ValidationHandler |
|
abstract fun handle(arg0: RoutingContext): Unit |
|
open static fun newInstance(arg: ValidationHandler): ValidationHandler |
interface HTTPOperationRequestValidationHandler : ValidationHandler, Handler<RoutingContext>
Base interface for HTTP request validation with API specification NOTE: This class has been automatically generated from the io.vertx.ext.web.api.contract.HTTPOperationRequestValidationHandler non RX-ified interface using Vert.x codegen. |
|
open class HTTPRequestValidationHandler : ValidationHandler, Handler<RoutingContext>
An interface for add HTTP Request validation. This class can validate parameters inside query, path, headers an body (watch below) You can assign multiple body type at the same time(for example a JSON schema together with a XML schema). This interface support:
|