package io.vertx.ext.web.api.validation;

import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.Handler;
import io.vertx.ext.web.RoutingContext;

Base interface for validation. For basic HTTP Request Validator, use HTTPRequestValidationHandler
Author:Francesco Guardiani @slinkydeveloper
Deprecated:You should use the new module vertx-web-openapi
/** * Base interface for validation. * For basic HTTP Request Validator, use {@link HTTPRequestValidationHandler} * * @author Francesco Guardiani @slinkydeveloper * @deprecated You should use the new module vertx-web-openapi */
@VertxGen(concrete = false) @Deprecated public interface ValidationHandler extends Handler<RoutingContext> { }