Uses of Class
io.vertx.rxjava3.openapi.validation.ValidatableRequest
-
Packages that use ValidatableRequest Package Description io.vertx.rxjava3.ext.web.openapi.router io.vertx.rxjava3.openapi.validation -
-
Uses of ValidatableRequest in io.vertx.rxjava3.ext.web.openapi.router
Methods in io.vertx.rxjava3.ext.web.openapi.router that return types with arguments of type ValidatableRequest Modifier and Type Method Description Single<ValidatableRequest>
RequestExtractor. extractValidatableRequest(RoutingContext routingContext, Operation operation)
Extracts and transforms the parameters and the body of an incoming request into a that can be validated by theRequestValidator
.Single<ValidatableRequest>
RequestExtractor. rxExtractValidatableRequest(RoutingContext routingContext, Operation operation)
Extracts and transforms the parameters and the body of an incoming request into a that can be validated by theRequestValidator
. -
Uses of ValidatableRequest in io.vertx.rxjava3.openapi.validation
Fields in io.vertx.rxjava3.openapi.validation with type parameters of type ValidatableRequest Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<ValidatableRequest>
ValidatableRequest. __TYPE_ARG
Methods in io.vertx.rxjava3.openapi.validation that return ValidatableRequest Modifier and Type Method Description static ValidatableRequest
ValidatableRequest. newInstance(ValidatableRequest arg)
Methods in io.vertx.rxjava3.openapi.validation that return types with arguments of type ValidatableRequest Modifier and Type Method Description static Single<ValidatableRequest>
ValidatableRequest. of(HttpServerRequest request, Operation operation)
Creates a newValidatableRequest
object based on the passed and .static Single<ValidatableRequest>
ValidatableRequest. rxOf(HttpServerRequest request, Operation operation)
Creates a newValidatableRequest
object based on the passed and .Methods in io.vertx.rxjava3.openapi.validation with parameters of type ValidatableRequest Modifier and Type Method Description Single<ValidatedRequest>
RequestValidator. rxValidate(ValidatableRequest params, String operationId)
Validates the passed request parameters against the operation defined in the related OpenAPI contract.Single<ValidatedRequest>
RequestValidator. validate(ValidatableRequest params, String operationId)
Validates the passed request parameters against the operation defined in the related OpenAPI contract.
-