Package io.fluxcapacitor.javaclient.web
Annotation Interface WebParam
Meta-annotation for parameter annotations used to inject values from an HTTP request.
Used internally by Flux to locate and bind request values to handler method parameters
based on the specified WebParameterSource
.
- See Also:
-
Required Element Summary
Required ElementsModifier and TypeRequired ElementDescriptionThe source of the parameter within the request (e.g. path, query, header). -
Optional Element Summary
Optional Elements
-
Element Details
-
value
String valueOptional name of the parameter (e.g. path variable or query param). If empty, defaults to the method parameter's name.- Default:
""
-
type
WebParameterSource typeThe source of the parameter within the request (e.g. path, query, header).
-