> + super(context, blobUtils, defaultLocation, locations);
> + this.sync = checkNotNull(sync, "sync");
> + this.crypto = checkNotNull(crypto, "crypto");
> + this.inventoryCache = checkNotNull(inventoryCache, "inventoryCache");
> + this.archiveCache = checkNotNull(archiveCache, "archiveCache");
> + }
> +
> + @Override
> + protected boolean deleteAndVerifyContainerGone(String container) {
> + sync.deleteVault(container);
> + return this.containerExists(container);
> + }
> +
> + @Override
> + public PageSet<? extends StorageMetadata> list() {
> + return null;
Throw `UnsupportedOperationException` instead?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-aws/pull/37/files#r14927940