mirror of https://github.com/apache/jclouds.git
Add support for AzureBlobStore.getBlobAccess and RegionScopedSwiftBlobStore.getBlobAccess.
They are currently throwing UnsupportedOperationException exception.
This commit is contained in:
parent
91b202f4ea
commit
a12ce5a8b7
|
@ -364,7 +364,7 @@ public class RegionScopedSwiftBlobStore implements BlobStore {
|
|||
|
||||
@Override
|
||||
public BlobAccess getBlobAccess(String container, String name) {
|
||||
throw new UnsupportedOperationException("unsupported in swift");
|
||||
return BlobAccess.PRIVATE;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -368,7 +368,7 @@ public class AzureBlobStore extends BaseBlobStore {
|
|||
|
||||
@Override
|
||||
public BlobAccess getBlobAccess(String container, String key) {
|
||||
throw new UnsupportedOperationException("unsupported in Azure");
|
||||
return BlobAccess.PRIVATE;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue