> + }
> +
> + public UserOptions build() {
> + UserOptions options = new UserOptions();
> +
> + if (page != null) {
> + options.queryParameters.put("page", String.valueOf(page));
> + }
> +
> + if (results != null) {
> + options.queryParameters.put("numResults",
> String.valueOf(results));
> + }
> +
> + return addFilterOptions(options);
> + }
> + }
I see. I'd leave then the page attribute unchanged until the issue is fixed in
the Abiquo API, but I'd remove the numResults and use the `limit` method from
the builder, as they are the same. If no value is provided, by default the
Abiquo API returns 25 results per page.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/22/files#r5704644