Package io.fluxcapacitor.javaclient.web
Annotation Interface PathParam
Injects a path variable from the URI into a handler method parameter.
Example:
@HandleGet("/users/{id}")
User getUser(@PathParam String id) { ... }
-
Optional Element Summary
Optional Elements
-
Element Details
-
value
String valueParameter name in the URI pattern. If left empty, it defaults to the method parameter's name;- Default:
""
-