Package io.quarkus.rest.client.reactive
Annotation Type ClientFormParams
-
@Target({TYPE,METHOD}) @Retention(RUNTIME) @Documented public @interface ClientFormParams
Used to specify form parameters that should be sent with the outbound request. When this annotation is placed at the interface level of a REST client interface, the specified form parameters will be sent on each request for all methods in the interface. When this annotation is placed on a method, the parameters will be sent only for that method. If the same form parameter is specified in an annotation for both the type and the method, only the form value specified in the annotation on the method will be sent.This class serves to act as the
Repeatableimplementation forClientFormParam.
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description ClientFormParam[]value
-
-
-
Element Detail
-
value
ClientFormParam[] value
-
-