2018-04-16 11:02:50 -04:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2018-04-25 14:24:23 -04:00
|
|
|
declare(strict_types=1);
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2018-04-16 11:02:50 -04:00
|
|
|
/**
|
|
|
|
|
* @copyright 2018, Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
|
*
|
2019-12-03 13:57:53 -05:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2018-04-16 11:02:50 -04:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
|
*
|
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2019-12-03 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-04-16 11:02:50 -04:00
|
|
|
*
|
|
|
|
|
*/
|
2019-11-22 14:52:10 -05:00
|
|
|
|
2018-04-16 11:02:50 -04:00
|
|
|
namespace OCA\Files_Trashbin\Sabre;
|
|
|
|
|
|
2018-09-03 12:30:10 -04:00
|
|
|
use OCP\Files\FileInfo;
|
|
|
|
|
|
2018-04-16 11:02:50 -04:00
|
|
|
interface ITrash {
|
|
|
|
|
public function restore(): bool;
|
2018-04-17 16:22:41 -04:00
|
|
|
|
|
|
|
|
public function getFilename(): string;
|
|
|
|
|
|
|
|
|
|
public function getOriginalLocation(): string;
|
2018-05-08 03:08:43 -04:00
|
|
|
|
2019-10-02 10:36:53 -04:00
|
|
|
public function getTitle(): string;
|
|
|
|
|
|
2018-05-08 03:08:43 -04:00
|
|
|
public function getDeletionTime(): int;
|
2018-05-10 10:12:33 -04:00
|
|
|
|
|
|
|
|
public function getSize();
|
2018-05-10 10:03:28 -04:00
|
|
|
|
|
|
|
|
public function getFileId(): int;
|
2018-09-03 12:30:10 -04:00
|
|
|
|
|
|
|
|
public function getFileInfo(): FileInfo;
|
2018-04-16 11:02:50 -04:00
|
|
|
}
|