You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by ga...@apache.org on 2015/02/13 02:42:17 UTC

[4/8] jclouds git commit: JCLOUDS-660: Legacy Swift portable container ACLs

JCLOUDS-660: Legacy Swift portable container ACLs

Intentionally unimplemented.


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/261bb7ee
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/261bb7ee
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/261bb7ee

Branch: refs/heads/master
Commit: 261bb7eeceaa83264866a2fa407947e928087fe3
Parents: d701f6a
Author: Andrew Gaul <ga...@apache.org>
Authored: Thu Feb 12 17:09:45 2015 -0800
Committer: Andrew Gaul <ga...@apache.org>
Committed: Thu Feb 12 17:26:47 2015 -0800

----------------------------------------------------------------------
 .../openstack/swift/blobstore/SwiftBlobStore.java        | 11 +++++++++++
 .../integration/SwiftContainerIntegrationLiveTest.java   |  5 +++++
 2 files changed, 16 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/261bb7ee/apis/swift/src/main/java/org/jclouds/openstack/swift/blobstore/SwiftBlobStore.java
----------------------------------------------------------------------
diff --git a/apis/swift/src/main/java/org/jclouds/openstack/swift/blobstore/SwiftBlobStore.java b/apis/swift/src/main/java/org/jclouds/openstack/swift/blobstore/SwiftBlobStore.java
index 1cda908..de25e03 100644
--- a/apis/swift/src/main/java/org/jclouds/openstack/swift/blobstore/SwiftBlobStore.java
+++ b/apis/swift/src/main/java/org/jclouds/openstack/swift/blobstore/SwiftBlobStore.java
@@ -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");
+   }
 }

http://git-wip-us.apache.org/repos/asf/jclouds/blob/261bb7ee/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerIntegrationLiveTest.java
----------------------------------------------------------------------
diff --git a/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerIntegrationLiveTest.java b/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerIntegrationLiveTest.java
index e306650..b557d8c 100644
--- a/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerIntegrationLiveTest.java
+++ b/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerIntegrationLiveTest.java
@@ -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");
+   }
 }