andrewgaul commented on this pull request.


> +    * @param containerAndKey
+    * @return array of size 2 with container and objectPrefix
+    */
+   private String[] splitContainerAndKey(String containerAndKey) {
+      String[] parts = containerAndKey.split("/", 2);
+      checkArgument(parts.length == 2, "No / separator found in \"%s\"", 
containerAndKey);
+      return parts;
+   }
+    
+   /**
+    * Retrieves a list of existing storage
+    * @param container
+    * @param options
+    * @return maximum of 10,000 object names per request.
+    */
+   private PageSet<? extends StorageMetadata> list(final String container,

`ObjectApi.list(ListContainerOptions)` Javadoc says:

> Lists up to 10,000 objects. To control a large list of containers beyond 
> 10,000 objects, use the `marker` and `endMarker` parameters in the 
> `ListContainerOptions` class.

-- 
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/1090#discussion_r114710757

Reply via email to