You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With Quarkus Rest Client, it is possible to pass headers to the "proxy" methods through ClientHeaderParam or HeaderParam, both of these options require having early knowledge of the headers names during development phase. It would be nice to be able to pass a map of headers similar to what is done for the query parameters via RestQuery. It provides more flexibility for cases where headers are known only during runtime and when it is easier to pass them as parameters instead of using factories or filters.
Implementation ideas
A new annotation @RestHeader similar to @RestQuery .