mirror of https://github.com/apache/jclouds.git
JCLOUDS-660: Legacy Swift portable container ACLs
Intentionally unimplemented.
This commit is contained in:
parent
d701f6a127
commit
261bb7eece
|
@ -31,6 +31,7 @@ import javax.inject.Singleton;
|
||||||
import org.jclouds.blobstore.BlobStoreContext;
|
import org.jclouds.blobstore.BlobStoreContext;
|
||||||
import org.jclouds.blobstore.domain.Blob;
|
import org.jclouds.blobstore.domain.Blob;
|
||||||
import org.jclouds.blobstore.domain.BlobMetadata;
|
import org.jclouds.blobstore.domain.BlobMetadata;
|
||||||
|
import org.jclouds.blobstore.domain.ContainerAccess;
|
||||||
import org.jclouds.blobstore.domain.PageSet;
|
import org.jclouds.blobstore.domain.PageSet;
|
||||||
import org.jclouds.blobstore.domain.StorageMetadata;
|
import org.jclouds.blobstore.domain.StorageMetadata;
|
||||||
import org.jclouds.blobstore.domain.internal.PageSetImpl;
|
import org.jclouds.blobstore.domain.internal.PageSetImpl;
|
||||||
|
@ -314,4 +315,14 @@ public class SwiftBlobStore extends BaseBlobStore {
|
||||||
throw new UnsupportedOperationException("publicRead");
|
throw new UnsupportedOperationException("publicRead");
|
||||||
return createContainerInLocation(location, container);
|
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");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -101,4 +101,9 @@ public class SwiftContainerIntegrationLiveTest extends BaseContainerIntegrationT
|
||||||
// use new Swift provider instead
|
// use new Swift provider instead
|
||||||
throw new SkipException("Intentionally not implemented for the legacy Swift provider");
|
throw new SkipException("Intentionally not implemented for the legacy Swift provider");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void testSetContainerAccess() throws Exception {
|
||||||
|
throw new SkipException("Intentionally not implemented for the legacy Swift provider");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue