diff options
author | Robin Appelman <icewind@owncloud.com> | 2013-09-12 21:58:32 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2013-09-12 21:58:32 +0200 |
commit | 58ed78aa9eb3c6b7986c7eb84668bdb5e65c0b13 (patch) | |
tree | 49bca6745c9cba9c0ba45ed2dfce9bde008bc6d6 /lib/public/files | |
parent | c9d26631592ba58d8026a14e7f637cfe835fa15d (diff) | |
download | nextcloud-server-58ed78aa9eb3c6b7986c7eb84668bdb5e65c0b13.tar.gz nextcloud-server-58ed78aa9eb3c6b7986c7eb84668bdb5e65c0b13.zip |
cleanup public storage interface a bit
Diffstat (limited to 'lib/public/files')
-rw-r--r-- | lib/public/files/storage.php | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/lib/public/files/storage.php b/lib/public/files/storage.php index e794662a434..f32f2073483 100644 --- a/lib/public/files/storage.php +++ b/lib/public/files/storage.php @@ -288,52 +288,6 @@ interface Storage { public function hasUpdated($path, $time); /** - * get a cache instance for the storage - * - * @param string $path - * @return \OC\Files\Cache\Cache - */ - public function getCache($path = ''); - - /** - * get a scanner instance for the storage - * - * @param string $path - * @return \OC\Files\Cache\Scanner - */ - public function getScanner($path = ''); - - - /** - * get the user id of the owner of a file or folder - * - * @param string $path - * @return string - */ - public function getOwner($path); - - /** - * get a permissions cache instance for the cache - * - * @param string $path - * @return \OC\Files\Cache\Permissions - */ - public function getPermissionsCache($path = ''); - - /** - * get a watcher instance for the cache - * - * @param string $path - * @return \OC\Files\Cache\Watcher - */ - public function getWatcher($path = ''); - - /** - * @return \OC\Files\Cache\Storage - */ - public function getStorageCache(); - - /** * get the ETag for a file or folder * * @param string $path |