> @@ -33,6 +34,16 @@
> */
> public class PaginationOptions extends BaseHttpRequestOptions {
> /**
> + * Many OpenStack interfaces take different params for pagination. Using
> queryParams allows you to make
> + * use of them all if necessary.
> + */
> + public PaginationOptions queryParameters(Multimap<String, String>
> queryParams) {
> + checkNotNull(queryParams, "queryParams");
> + queryParameters.putAll(queryParams);
[minor]
```
queryParameters.putAll(checkNotNull(queryParams, "queryParams"));
```
? Or do you prefer the "more explicit" style?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/191/files#r7234690