Package org.openstack.client.storage

Examples of org.openstack.client.storage.OpenstackStorageClient.listObjects()


  @Override
  public CasStoreObject findArtifact(Md5Hash hash) {
    OpenstackStorageClient storageClient = getStorageClient();

    try {
      List<StorageObject> storageObjects = Lists.newArrayList(storageClient
          .listObjects(containerName, null, null));

      String findHash = hash.toHex();
      for (StorageObject storageObject : storageObjects) {
        String storageObjectHash = storageObject.getHash();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.