jumenzel commented on this pull request.


> @@ -37,6 +37,15 @@
 public class ListBucketOptions extends BaseHttpRequestOptions implements 
Cloneable {
    public static final ListBucketOptions NONE = new ListBucketOptions();
 
+   public ListBucketOptions withListType(String listType) {
+      queryParameters.put("list-type", checkNotNull(listType, "listType"));
+      return this;
+   }
+
+   public String getListType() {

Again here the value returned would be either 2 or null. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/1267#discussion_r248839503

Reply via email to