> +
> +import
> org.jclouds.abiquo.domain.options.FilterOptions.BaseFilterOptionsBuilder;
> +import org.jclouds.http.options.BaseHttpRequestOptions;
> +
> +/**
> + * Available options to query users.
> + *
> + * @author Carlos Garcia
> + */
> +public class UserOptions extends BaseHttpRequestOptions {
> + public static Builder builder() {
> + return new Builder();
> + }
> +
> + @Override
> + protected Object clone() throws CloneNotSupportedException {
This `clone()` method has been copied from the <a
href="https://github.com/jclouds/jclouds-labs/blob/master/abiquo/src/main/java/org/jclouds/abiquo/domain/enterprise/options/EnterpriseOptions.java">`EnterpriseOptions`</a>
class. Since `UserOptions` is so simple (it just translates the standard
pagination parameters into the Abiquo ones), should I change it?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/22/files#r5811040