Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

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

@rassmate

Description

@rassmate

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;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions