Package io.quarkus.vertx.web
Annotation Interface Param
Identifies a route method parameter that should be injected with a value returned from
HttpServerRequest.getParam(String).
The parameter type must be String, java.util.Optional<String> or java.util.List<String>, otherwise
the build fails.
- See Also:
-
HttpServerRequest.getParam(String)
-
Field Details
-
ELEMENT_NAME
Constant value forvalue()indicating that the annotated element's name should be used as-is.- See Also:
-
-
Element Details
-
value
String valueThe name of the parameter. By default, the element's name is used as-is.- Returns:
- the name of the parameter
- Default:
- "<<element name>>"
-