From 957f314a070faef8fe192b3293663a9c9271d5e0 Mon Sep 17 00:00:00 2001 From: Nicolas Le Goff Date: Wed, 15 Oct 2014 18:38:27 +0200 Subject: [PATCH] Delete Record Entities --- lib/Alchemy/Phrasea/Model/Entities/Record.php | 294 ------------------ 1 file changed, 294 deletions(-) delete mode 100644 lib/Alchemy/Phrasea/Model/Entities/Record.php diff --git a/lib/Alchemy/Phrasea/Model/Entities/Record.php b/lib/Alchemy/Phrasea/Model/Entities/Record.php deleted file mode 100644 index ad9ff59e1e..0000000000 --- a/lib/Alchemy/Phrasea/Model/Entities/Record.php +++ /dev/null @@ -1,294 +0,0 @@ -getDataboxId(), $this->getRecordId()); - } - /** - * @return mixed - */ - public function getBaseId() - { - return $this->baseId; - } - - /** - * @param mixed $baseId - */ - public function setBaseId($baseId) - { - $this->baseId = $baseId; - } - - /** - * @return mixed - */ - public function getCollectionId() - { - return $this->collectionId; - } - - /** - * @param mixed $collectionId - */ - public function setCollectionId($collectionId) - { - $this->collectionId = $collectionId; - } - - /** - * @return mixed - */ - public function getCreated() - { - return $this->created; - } - - /** - * @param mixed $created - */ - public function setCreated($created) - { - $this->created = $created; - } - - /** - * @return mixed - */ - public function getDataboxId() - { - return $this->databoxId; - } - - /** - * @param mixed $databoxId - */ - public function setDataboxId($databoxId) - { - $this->databoxId = $databoxId; - } - - /** - * @return mixed - */ - public function isStory() - { - return $this->isStory; - } - - /** - * @param mixed $isStory - */ - public function setIsStory($isStory) - { - $this->isStory = $isStory; - } - - /** - * @return mixed - */ - public function getMimeType() - { - return $this->mimeType; - } - - /** - * @param mixed $mimeType - */ - public function setMimeType($mimeType) - { - $this->mimeType = $mimeType; - } - - /** - * @return mixed - */ - public function getOriginalName() - { - return $this->originalName; - } - - /** - * @param mixed $originalName - */ - public function setOriginalName($originalName) - { - $this->originalName = $originalName; - } - - /** - * @return mixed - */ - public function getRecordId() - { - return $this->recordId; - } - - /** - * @param mixed $recordId - */ - public function setRecordId($recordId) - { - $this->recordId = $recordId; - } - - /** - * @return mixed - */ - public function getSha256() - { - return $this->sha256; - } - - /** - * @param mixed $sha256 - */ - public function setSha256($sha256) - { - $this->sha256 = $sha256; - } - - /** - * @return mixed - */ - public function getTitle() - { - return $this->title; - } - - /** - * @param mixed $title - */ - public function setTitle($title) - { - $this->title = $title; - } - - /** - * @return mixed - */ - public function getType() - { - return $this->type; - } - - /** - * @param mixed $type - */ - public function setType($type) - { - $this->type = $type; - } - - /** - * @return mixed - */ - public function getUpdated() - { - return $this->updated; - } - - /** - * @param mixed $updated - */ - public function setUpdated($updated) - { - $this->updated = $updated; - } - - /** - * @return mixed - */ - public function getUuid() - { - return $this->uuid; - } - - /** - * @param mixed $uuid - */ - public function setUuid($uuid) - { - $this->uuid = $uuid; - } - - /** - * @return mixed - */ - public function getCaption() - { - return $this->caption; - } - - /** - * @param mixed $caption - */ - public function setCaption(ArrayCollection $caption) - { - $this->caption = $caption; - } - - /** - * @return mixed - */ - public function getExif() - { - return $this->exif; - } - - /** - * @param mixed $exif - */ - public function setExif(ArrayCollection $exif) - { - $this->exif = $exif; - } - - /** - * @return mixed - */ - public function getSubdefs() - { - return $this->subdefs; - } - - /** - * @param mixed $subdefs - */ - public function setSubdefs(ArrayCollection $subdefs) - { - $this->subdefs = $subdefs; - } -} \ No newline at end of file