> + */
> +public class UserOptions extends BaseHttpRequestOptions {
> + public static Builder builder() {
> + return new Builder();
> + }
> +
> + @Override
> + protected Object clone() throws CloneNotSupportedException {
> + UserOptions options = new UserOptions();
> + options.queryParameters.putAll(queryParameters);
> + return options;
> + }
> +
> + public static class Builder extends BaseFilterOptionsBuilder<Builder> {
> +
> + private Integer page;
`page` is a numeric value, just like `limit` (defined in the parent class), and
so it is treated in the same way.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/22/files#r5811092