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