1 | <?php |
||
21 | class FilesystemMetaEntity extends AbstractEntity |
||
22 | { |
||
23 | /** |
||
24 | * @var array |
||
25 | */ |
||
26 | protected $container = [ |
||
27 | 'id_filesystem_meta' => null, |
||
28 | 'fk_filesystem' => null, |
||
29 | 'meta_key' => null, |
||
30 | 'meta_data' => null, |
||
31 | 'date_created' => null, |
||
32 | 'date_modified' => null, |
||
33 | ]; |
||
34 | |||
35 | /** |
||
36 | * @param int $identifier |
||
37 | * @return FilesystemMetaEntity |
||
38 | */ |
||
39 | public function setFilesystemrMetaId(int $identifier) : FilesystemMetaEntity |
||
45 | |||
46 | /** |
||
47 | * @return int|null |
||
48 | */ |
||
49 | public function getFilesystemMetaId() : ? int |
||
55 | |||
56 | /** |
||
57 | * @param int $userIdentifier |
||
58 | * @return FilesystemMetaEntity |
||
59 | */ |
||
60 | public function setFilesystemId(int $userIdentifier) : FilesystemMetaEntity |
||
66 | |||
67 | /** |
||
68 | * @return int|null |
||
69 | */ |
||
70 | public function getFilesystemId() : ? int |
||
76 | |||
77 | /** |
||
78 | * @param string $metaKey |
||
79 | * @return FilesystemMetaEntity |
||
80 | */ |
||
81 | public function setMetaKey(string $metaKey) : FilesystemMetaEntity |
||
87 | |||
88 | /** |
||
89 | * @return null|string |
||
90 | */ |
||
91 | public function getMetaKey() : ? string |
||
95 | |||
96 | /** |
||
97 | * @param string $metaData |
||
98 | * @return FilesystemMetaEntity |
||
99 | */ |
||
100 | public function setMetaData(string $metaData) : FilesystemMetaEntity |
||
106 | |||
107 | /** |
||
108 | * @return null|string |
||
109 | */ |
||
110 | public function getMetaData() : ? string |
||
114 | |||
115 | /** |
||
116 | * @param DateTime $dateTime |
||
117 | * @return FilesystemMetaEntity |
||
118 | */ |
||
119 | public function setDateCreated(DateTime $dateTime) : FilesystemMetaEntity |
||
125 | |||
126 | /** |
||
127 | * @return null|DateTime |
||
128 | */ |
||
129 | public function getDateCreated() : ? DateTime |
||
135 | |||
136 | /** |
||
137 | * @param DateTime $dateTime |
||
138 | * @return FilesystemMetaEntity |
||
139 | */ |
||
140 | public function setDateModified(DateTime $dateTime) : FilesystemMetaEntity |
||
146 | |||
147 | /** |
||
148 | * @return null|DateTime |
||
149 | */ |
||
150 | public function getDateModified() : ? DateTime |
||
156 | } |
||
157 |