Apache Jclouds BlobStore getBlob 与 GetOptions

Apache Jclouds BlobStore getBlob with GetOptions

任何人都知道如何使用 GetOptions 从 blob 存储中获取 blob:

BlobStore blobStore = context.getBlobStore();
Blob blob = blobStore.getBlob(cloudStorageContainer, fileName);

我想实现的是在调用BlobStore.getBlob()方法时将ETag值传递给org.jclouds.blobstore.options.GetOptions

jclouds 可以通过以下方式之一根据其 ETag 有条件地获取 blob:

BlobStore.getBlob(containerName, blobName, new Getoptions().ifETagMatches(etag));
BlobStore.getBlob(containerName, blobName, new Getoptions().ifETagDoesntMatch(etag));