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,
`RegionScopedSwiftBlobStore` can call `ObjectApi.list`.
--
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_r114451117