We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b986771 commit 7061f4cCopy full SHA for 7061f4c
http-client/src/main/java/io/avaje/http/client/HttpClientRequest.java
@@ -237,6 +237,17 @@ public interface HttpClientRequest {
237
*/
238
HttpClientRequest queryParam(String name, Object value);
239
240
+ /**
241
+ * Add a collection query parameters associated with a single key
242
+ *
243
+ * @param name The name of the query parameter
244
+ * @param values The values of the query parameter which can be null
245
+ * @return The request being built
246
+ */
247
+ default HttpClientRequest queryParam(String name, Collection<Object> value) {
248
+ return queryParam(name, (Object) value);
249
+ }
250
+
251
/**
252
* Add a multiple query parameters as name value map.
253
*
0 commit comments