JCLOUDS-660: Legacy Swift portable container ACLs

Intentionally unimplemented.
This commit is contained in:
Andrew Gaul 2015-02-12 17:09:45 -08:00
parent d701f6a127
commit 261bb7eece
2 changed files with 16 additions and 0 deletions

View File

@ -31,6 +31,7 @@ import javax.inject.Singleton;
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.PageSet;
import org.jclouds.blobstore.domain.StorageMetadata;
import org.jclouds.blobstore.domain.internal.PageSetImpl;
@ -314,4 +315,14 @@ public class SwiftBlobStore extends BaseBlobStore {
throw new UnsupportedOperationException("publicRead");
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");
}
}

View File

@ -101,4 +101,9 @@ public class SwiftContainerIntegrationLiveTest extends BaseContainerIntegrationT
// use new Swift provider instead
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");
}
}