SAAS-525: Station Termination -> Delete cloud_file table records

Deleted cloud_file records.
Renamed the function that does this.
This commit is contained in:
drigato 2014-12-16 14:13:57 -05:00
parent 09c30bde1b
commit ab4ebb2969
4 changed files with 17 additions and 43 deletions

View file

@ -43,9 +43,9 @@ class ProxyStorageBackend extends StorageBackend
$this->storageBackend->deletePhysicalFile($resourceId);
}
public function deleteObjects()
public function deleteAllCloudFileObjects()
{
$this->storageBackend->deleteObjects();
$this->storageBackend->deleteAllCloudFileObjects();
}
}