mirror of
https://github.com/apache/jclouds.git
synced 2025-02-07 18:49:52 +00:00
JCLOUDS-660: Glacier portable container ACLs
Not implemented for Glacier.
This commit is contained in:
parent
d139f09ba6
commit
0af768f11b
@ -27,6 +27,7 @@ import java.util.concurrent.TimeUnit;
|
||||
import org.jclouds.blobstore.BlobStoreContext;
|
||||
import org.jclouds.blobstore.domain.Blob;
|
||||
import org.jclouds.blobstore.domain.BlobMetadata;
|
||||
import org.jclouds.blobstore.domain.ContainerAccess;
|
||||
import org.jclouds.blobstore.domain.MutableBlobMetadata;
|
||||
import org.jclouds.blobstore.domain.PageSet;
|
||||
import org.jclouds.blobstore.domain.StorageMetadata;
|
||||
@ -178,6 +179,16 @@ public class GlacierBlobStore extends BaseBlobStore {
|
||||
return createContainerInLocation(location, container);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ContainerAccess getContainerAccess(String container) {
|
||||
throw new UnsupportedOperationException("not implemented");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setContainerAccess(String container, ContainerAccess access) {
|
||||
throw new UnsupportedOperationException("not implemented");
|
||||
}
|
||||
|
||||
/**
|
||||
* Lists the blobs in the container.
|
||||
* An inventory will be retrieved to obtain the list. Note that this will take hours and the result may be
|
||||
|
Loading…
x
Reference in New Issue
Block a user