> + checkState(limit >= 0, "limit must be >= 0");
> + checkState(limit <= 10000, "limit must be <= 10000");
> + queryParameters.put("limit", Integer.toString(limit));
> + return this;
> + }
> +
> + /**
> + * object names greater in value than the specified marker are returned.
> + */
> + public ListCDNContainerOptions marker(String marker) {
> + queryParameters.put("marker", checkNotNull(marker, "marker"));
> + return this;
> + }
> +
> + /**
> + * object names less in value than the specified marker are returned.
"less" according to which comparison?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/107/files#r13035272