Package io.quarkus.websockets.next
Annotation Interface PathParam
Identifies an endpoint callback method parameter that should be injected with a value returned from
WebSocketConnection.pathParam(String).
The parameter type must be String and the name must be defined in the relevant endpoint path, otherwise
the build fails.
-
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>>"
-