> + if ( page != null ) {
> + options.queryParameters.put("page",
> String.valueOf(page));
> + }
> +
> + return addFilterOptions(options);
> + }
> +
> + // FIXME: This method is overriden to change its behavior until
> the
> + // issue ABICLOUDPREMIUM-5927 in Abiquo isissue is solved (
> + // (http://jira.abiquo.com/browse/ABICLOUDPREMIUM-5927)
> + // Once its fixed, this method should be deleted
> + @Override
> + public Builder disablePagination() {
> + // Unlike in its parent method, disabling pagination
> means to set
> + // the limit attribute to null
> + this.limit = null;
Shouldn't this be: `this.limit = Integer.MAX_VALUE`? Otherwise the default page
size (25) will be used and only 25 users would be returned.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/22/files#r5789451