> + * uploaded object.
> + */
> + private class BlobUploader implements Callable<BlobDetail> {
> + private String container;
> + private BlobDetail toBeUploadedBlobDetail;
> +
> + protected BlobUploader(String container, BlobDetail
> toBeUploadedBlobDetail) {
> + this.container = container;
> + this.toBeUploadedBlobDetail = toBeUploadedBlobDetail;
> + }
> +
> + @Override
> + public BlobDetail call() throws Exception {
> + Blob blob =
> storage.blobBuilder(toBeUploadedBlobDetail.getRemoteBlobName())
> + .payload(toBeUploadedBlobDetail.getLocalFile())
> + .contentType("")
Hmm...will this allow all the files to render correctly? Don't we need to
preserve content types?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-examples/pull/11/files#r5438278