archupsg03 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,
Deleting DLO objects requires, the details of the segments.
BlobStore's List command takes BlobStore's ListContainerOptions as input.
But incase of remove blob we need Swift's ListContainerOptions. That the
reasonf i copied and made few changes
--
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_r114248882