HttpRequestValues.Processor exposes MethodParameter[]

Closes gh-35148
This commit is contained in:
rstoyanchev
2025-07-08 14:53:59 +01:00
parent 523552ac2e
commit c23edae4db
4 changed files with 11 additions and 5 deletions
@@ -227,7 +227,7 @@ class HttpServiceMethodTests {
HttpServiceProxyFactory.builder()
.exchangeAdapter(this.client)
.httpRequestValuesProcessor((m, a, builder) -> builder.addAttribute("foo", "a"))
.httpRequestValuesProcessor((m, p, a, builder) -> builder.addAttribute("foo", "a"))
.build()
.createClient(Service.class)
.execute();