> + */
> +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;
Store as a String straight away, since that's how it will be used?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/22/files#r5806349