reactive-wizard icon indicating copy to clipboard operation
reactive-wizard copied to clipboard

Having a @BeanParam annotated argument with fields inside annotated with @FormParam or HeaderParam is not supported

Open rassmate opened this issue 3 years ago • 0 comments

Implement support for@FormParam and @HeaderParam inside an @BeanParam annotated class for outgoing requests.

@POST
Observable<Integer> postData(@BeanParam SomeObject);

private class SomeObject {
 @HeaderParam("testHeader")
  private String testHeader;
  
  @FormParam
  private String formParam;
}

rassmate avatar Nov 03 '21 16:11 rassmate