Package org.jclouds.blobstore

Examples of org.jclouds.blobstore.BlobMap$Factory


      return context.createBlobMap(bucket, options);
   }

   @Override
   protected void addTenObjectsUnderPrefix(String containerName, String prefix) throws InterruptedException {
      BlobMap blobMap = createMap(view, containerName, inDirectory(prefix));
      for (int i = 0; i < 10; i++) {
         blobMap.put(i + "", blobMap.blobBuilder().name(i + "").payload(i + "content").build());
      }
   }
View Full Code Here


      }
   }

   @Override
   protected void addTenObjectsUnderRoot(String containerName) throws InterruptedException {
      BlobMap blobMap = createMap(view, containerName, ListContainerOptions.NONE);
      for (int i = 0; i < 10; i++) {
         blobMap.put(i + "", blobMap.blobBuilder().name(i + "").payload(i + "content").build());
      }
   }
View Full Code Here

TOP

Related Classes of org.jclouds.blobstore.BlobMap$Factory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.