summaryrefslogtreecommitdiffstats
path: root/businesslayer/businesslayer.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-15 03:41:49 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-15 03:41:49 +0200
commit407fbebc2da14520942e0a6a9220a5a3cfc4a7ad (patch)
treee313ddad41398382f82cd27b40f46e0b7394c393 /businesslayer/businesslayer.php
parent7d33bab5abd81871e4efcf995f8a715d45b9d590 (diff)
rename businesslayer to service
Diffstat (limited to 'businesslayer/businesslayer.php')
-rw-r--r--businesslayer/businesslayer.php62
1 files changed, 0 insertions, 62 deletions
diff --git a/businesslayer/businesslayer.php b/businesslayer/businesslayer.php
deleted file mode 100644
index dc6fc1a68..000000000
--- a/businesslayer/businesslayer.php
+++ /dev/null
@@ -1,62 +0,0 @@
-<?php
-/**
- * ownCloud - News
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
- *
- * @author Alessandro Cosentino <cosenal@gmail.com>
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Alessandro Cosentino 2012
- * @copyright Bernhard Posselt 2012, 2014
- */
-
-namespace OCA\News\BusinessLayer;
-
-use \OCP\AppFramework\Db\DoesNotExistException;
-use \OCP\AppFramework\Db\MultipleObjectsReturnedException;
-
-use \OCA\News\Db\IMapper;
-
-
-abstract class BusinessLayer {
-
- protected $mapper;
-
- public function __construct(IMapper $mapper){
- $this->mapper = $mapper;
- }
-
-
- /**
- * Delete an entity
- * @param int $id the id of the entity
- * @param string $userId the name of the user for security reasons
- * @throws DoesNotExistException if the entity does not exist
- * @throws MultipleObjectsReturnedException if more than one entity exists
- */
- public function delete($id, $userId){
- $entity = $this->find($id, $userId);
- $this->mapper->delete($entity);
- }
-
-
- /**
- * Finds an entity by id
- * @param int $id the id of the entity
- * @param string $userId the name of the user for security reasons
- * @throws DoesNotExistException if the entity does not exist
- * @throws MultipleObjectsReturnedException if more than one entity exists
- * @return Entity the entity
- */
- public function find($id, $userId){
- try {
- return $this->mapper->find($id, $userId);
- } catch(DoesNotExistException $ex){
- throw new BusinessLayerException($ex->getMessage());
- } catch(MultipleObjectsReturnedException $ex){
- throw new BusinessLayerException($ex->getMessage());
- }
- }
-
-}