예제 #1
0
 /** {@inheritDoc} */
 @MethodLog
 public String getCachedStorageDataFileLocation(StorageData storageData, int hash)
     throws StorageException {
   if (!storageManager.isStorageExisting(storageData)) {
     throw new StorageException(
         "The storage "
             + storageData
             + " does not exist on the CMR. Cached data file can not be resolved.");
   }
   return storageManager.getCachedStorageDataFileLocation(storageData, hash);
 }