| Total Complexity | 4 |
| Total Lines | 54 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | class Bookmark extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * documentIdentifier : A document uid or a fedoroPid object identifier. |
||
| 27 | * |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | protected $documentIdentifier = ''; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * feUserUid : Uid of the frontend user. |
||
| 34 | * |
||
| 35 | * @var integer |
||
| 36 | */ |
||
| 37 | protected $feUserUid = 0; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Gets the document identifier |
||
| 41 | * |
||
| 42 | * @return int |
||
| 43 | */ |
||
| 44 | public function getDocumentIdentifier() |
||
| 45 | { |
||
| 46 | return $this->documentIdentifier; |
||
|
|
|||
| 47 | } |
||
| 48 | |||
| 49 | /** |
||
| 50 | * Sets the document identifier |
||
| 51 | * |
||
| 52 | * @param int $documentIdentifier |
||
| 53 | */ |
||
| 54 | public function setDocumentIdentifier($documentIdentifier) |
||
| 55 | { |
||
| 56 | $this->documentIdentifier = $documentIdentifier; |
||
| 57 | } |
||
| 58 | |||
| 59 | /** |
||
| 60 | * Gets the feuser uid |
||
| 61 | * |
||
| 62 | * @return int |
||
| 63 | */ |
||
| 64 | public function getFeUserUid() |
||
| 65 | { |
||
| 66 | return $this->feUserUid; |
||
| 67 | } |
||
| 68 | |||
| 69 | /** |
||
| 70 | * Sets the feuser uid |
||
| 71 | * |
||
| 72 | * @param int $feUserUid |
||
| 73 | */ |
||
| 74 | public function setFeUserUid($feUserUid) |
||
| 77 | } |
||
| 78 | |||
| 79 | } |