> @@ -182,9 +197,65 @@ public Blob getBlob(final String container, final String
> key) {
> File file = getFileForBlobKey(container, key);
> ByteSource byteSource = Files.asByteSource(file);
> try {
> + String contentDisposition = null;
> + String contentEncoding = null;
> + String contentLanguage = null;
> + String contentType = null;
> + Date expires = null;
> + HashCode hashCode = null;
> + UserDefinedFileAttributeView view =
> java.nio.file.Files.getFileAttributeView(
> + file.toPath(), UserDefinedFileAttributeView.class);
> + Set<String> attributes = ImmutableSet.copyOf(view.list());
Needed for O(1) lookup.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/443/files#r16027471