Uses of Class
io.vertx.reactivex.openapi.contract.Operation
-
Packages that use Operation Package Description io.vertx.reactivex.ext.web.openapi.router io.vertx.reactivex.openapi.contract io.vertx.reactivex.openapi.validation -
-
Uses of Operation in io.vertx.reactivex.ext.web.openapi.router
Methods in io.vertx.reactivex.ext.web.openapi.router that return Operation Modifier and Type Method Description Operation
OpenAPIRoute. getOperation()
Methods in io.vertx.reactivex.ext.web.openapi.router with parameters of type Operation Modifier and Type Method Description Future<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 Operation in io.vertx.reactivex.openapi.contract
Fields in io.vertx.reactivex.openapi.contract with type parameters of type Operation Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<Operation>
Operation. __TYPE_ARG
Methods in io.vertx.reactivex.openapi.contract that return Operation Modifier and Type Method Description Operation
OpenAPIContract. findOperation(String urlPath, HttpMethod method)
Finds the relatedOperation
object based on the passed url path and method.static Operation
Operation. newInstance(Operation arg)
Operation
OpenAPIContract. operation(String operationId)
Access to an operation defined in the contract withoperationId
.Methods in io.vertx.reactivex.openapi.contract that return types with arguments of type Operation Modifier and Type Method Description List<Operation>
Path. getOperations()
List<Operation>
OpenAPIContract. operations()
-
Uses of Operation in io.vertx.reactivex.openapi.validation
Methods in io.vertx.reactivex.openapi.validation with parameters of type Operation Modifier and Type Method Description static Future<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 .
-