> + this.blob2OrionBlob = Preconditions.checkNotNull(blob2OrionBlob,
> "blob2OrionBlob is null");
> + this.blobProps2BlobMetadata = Preconditions
> + .checkNotNull(blobProps2BlobMetadata, "blobProps2BlobMetadata is
> null");
> +
> + }
> +
> + @Override
> + public boolean blobExists(String container, String blobName) {
> + return this.api.blobExists(this.getUserWorkspace(), container,
> OrionUtils.getParentPath(blobName),
> + OrionUtils.getName(blobName));
> + }
> +
> + @Override
> + public BlobMetadata blobMetadata(String container, String blobName) {
> + String parentPath = OrionUtils.getParentPath(blobName);
> + // Blob names must NOT start with a "/" since they are relative paths
Is automatically removing the best bet? @demobox what is the convention in
jclouds blobstore for this kind of thing?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/45/files#r14714920