From 92ea15247e59aebb74c7a020e47defcb47ae5df3 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Fri, 16 May 2014 13:27:06 +0200 Subject: add delete method for imapper since service depends on it --- db/imapper.php | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'db') diff --git a/db/imapper.php b/db/imapper.php index 5a5f0a3cc..9882060f0 100644 --- a/db/imapper.php +++ b/db/imapper.php @@ -13,10 +13,21 @@ namespace OCA\News\Db; +use \OCP\AppFramework\Db\Entity; + interface IMapper { + /** * @param int $id the id of the feed * @param string $userId the id of the user */ public function find($id, $userId); + + /** + * Delete an entity + * @param Entity $entity the entity that should be deleted + * @throws ServiceNotFoundException if the entity does not exist, or there + * are more than one of it + */ + public function delete(Entity $entity); } \ No newline at end of file -- cgit v1.2.3