Class OpenAPIRoute

java.lang.Object
io.vertx.rxjava3.ext.web.openapi.router.OpenAPIRoute
All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate

public class OpenAPIRoute extends Object implements io.vertx.lang.rx.RxDelegate
  • Field Details

    • __TYPE_ARG

      public static final io.vertx.lang.rx.TypeArg<OpenAPIRoute> __TYPE_ARG
  • Constructor Details

    • OpenAPIRoute

      public OpenAPIRoute(OpenAPIRoute delegate)
    • OpenAPIRoute

      public OpenAPIRoute(Object delegate)
  • Method Details

    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • getDelegate

      public OpenAPIRoute getDelegate()
      Specified by:
      getDelegate in interface io.vertx.lang.rx.RxDelegate
    • addHandler

      public OpenAPIRoute addHandler(Handler<RoutingContext> handler)
      Adds a handler for this route which is executed after the security and validation handlers defined in the contract
      Parameters:
      handler - The handler to add
      Returns:
      the route
    • addFailureHandler

      public OpenAPIRoute addFailureHandler(Handler<RoutingContext> handler)
      Adds a failure handler for this route
      Parameters:
      handler - The failure handler to add
      Returns:
      the route
    • getOperation

      public Operation getOperation()
      Returns:
      the related operation of this route
    • doValidation

      public boolean doValidation()
      Returns:
      true if validation based on the OpenAPI contract is active for this route. By default, it is active.
    • setDoValidation

      public OpenAPIRoute setDoValidation(boolean doValidation)
      Sets the validation flag for incoming requests.
      Parameters:
      doValidation - The validation flag.
      Returns:
      the route
    • doSecurity

      public boolean doSecurity()
      Returns:
      true if security checks based on the OpenAPI contract are active for this route. By default, it is active.
    • setDoSecurity

      public OpenAPIRoute setDoSecurity(boolean doSecurity)
      Sets the security flag for incoming requests.
      Parameters:
      doSecurity - The security flag.
      Returns:
      the route
    • newInstance

      public static OpenAPIRoute newInstance(OpenAPIRoute arg)