> +package org.jclouds.glacier.options;
> +
> +import static com.google.common.base.Preconditions.checkArgument;
> +import static com.google.common.base.Preconditions.checkNotNull;
> +
> +import org.jclouds.http.options.BaseHttpRequestOptions;
> +
> +/**
> + * Pagination options used to specify the collection responses.
> + *
> + * @author Roman Coedo
> + */
> +public class PaginationOptions extends BaseHttpRequestOptions {
> +
> + private final static int MIN_LIMIT = 1;
> + private final static int MAX_LIMIT = 1000;
Is this a server-side limitation, or something we're imposing on the client
side? If server-side, how often is it likely to change? If often, would it make
more sense to let the server reject the call and allow the developer to fix
their code in response?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-aws/pull/4/files#r13034730