andrewgaul commented on this pull request.
> + */
+ private String getSLOInfo(String container, String objectName) {
+ ObjectApi objectApi = api.getObjectApi(regionId, container);
+ Multimap<String, String> objInfo =
objectApi.getWithoutBody(objectName).getHeaders();
+ if (objInfo.containsKey("X-Static-Large-Object")) {
+ Collection<String> objectManifest =
objInfo.get("X-Static-Large-Object");
+ return String.valueOf(objectManifest.toArray()[0]);
+ }
+ return null;
+ }
+
+
+ /**
+ * @param containerAndPrefix
+ */
+ private void removeObjectsWithPrefix(String containerAndPrefix) {
Remove this function and make the single caller explicitly call
`splitContainerAndKey` and `removeObjectsWithPrefix(String, String)`.
--
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#pullrequestreview-35522625