We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@BeanParam is used to group parameters into a java bean. For more information refer to this document. Here is an example:
@BeanParam
// ... @ApiOperation("Search users") @GET @Path("/") Results<User> list(@BeanParam UserListOptions listOptions); } public class UserListOptions extends PagingGetOptions { @QueryParam("username") private String username; @QueryParam("properties") private String properties; // ... // getter/setters }
I made a simple fix but it's based on my own modifications. You can refer to the commit here. shuz@5213b4f
The text was updated successfully, but these errors were encountered:
This is a duplicate of #446. Closing.
Sorry, something went wrong.
No branches or pull requests
@BeanParam
is used to group parameters into a java bean. For more information refer to this document. Here is an example:I made a simple fix but it's based on my own modifications. You can refer to the commit here.
shuz@5213b4f
The text was updated successfully, but these errors were encountered: