1 | <?php |
||
21 | class FilesystemDirectoryDataEntity extends AbstractEntity |
||
22 | { |
||
23 | /** |
||
24 | * @var array |
||
25 | */ |
||
26 | protected $container = [ |
||
27 | 'id_filesystem' => null, |
||
28 | 'id_application' => null, |
||
29 | 'id_filesystem_directory' => null, |
||
30 | 'description' => null, |
||
31 | 'directory_type' => null, |
||
32 | 'is_autoindex' => null, |
||
33 | 'path' => null, |
||
34 | 'basename' => null, |
||
35 | 'uri' => null, |
||
36 | 'type' => null, |
||
37 | 'title' => null, |
||
38 | ]; |
||
39 | |||
40 | /** |
||
41 | * @param int $identifier |
||
42 | * @return FilesystemDirectoryDataEntity |
||
43 | */ |
||
44 | public function setFilesystemId(int $identifier) : FilesystemDirectoryDataEntity |
||
50 | |||
51 | /** |
||
52 | * @return int|null |
||
53 | */ |
||
54 | public function getFilesystemId() : ? int |
||
60 | |||
61 | /** |
||
62 | * @param int $applicationIdentifier |
||
63 | * @return FilesystemDirectoryDataEntity |
||
64 | */ |
||
65 | public function setApplicationId(int $applicationIdentifier) : FilesystemDirectoryDataEntity |
||
71 | |||
72 | /** |
||
73 | * @return int|null |
||
74 | */ |
||
75 | public function getApplicationId() : ? int |
||
81 | |||
82 | /** |
||
83 | * @param int $identifier |
||
84 | * @return FilesystemDirectoryDataEntity |
||
85 | */ |
||
86 | public function setFilesystemDirectoryId(int $identifier) : FilesystemDirectoryDataEntity |
||
92 | |||
93 | /** |
||
94 | * @return int|null |
||
95 | */ |
||
96 | public function getFilesystemDirectoryId() : ? int |
||
102 | |||
103 | /** |
||
104 | * @param string $description |
||
105 | * @return FilesystemDirectoryDataEntity |
||
106 | */ |
||
107 | public function setDescription(string $description) : FilesystemDirectoryDataEntity |
||
113 | |||
114 | /** |
||
115 | * @return null|string |
||
116 | */ |
||
117 | public function getDescription() : ? string |
||
121 | |||
122 | /** |
||
123 | * @param string $directoryType |
||
124 | * @return FilesystemDirectoryDataEntity |
||
125 | */ |
||
126 | public function setDirectoryType(string $directoryType) : FilesystemDirectoryDataEntity |
||
132 | |||
133 | /** |
||
134 | * @return null|string |
||
135 | */ |
||
136 | public function getDirectoryType() : ? string |
||
140 | |||
141 | /** |
||
142 | * @param string $proxy |
||
143 | * @return FilesystemDirectoryDataEntity |
||
144 | */ |
||
145 | public function setProxy(string $proxy) : FilesystemDirectoryDataEntity |
||
151 | |||
152 | /** |
||
153 | * @return null|string |
||
154 | */ |
||
155 | public function getProxy() : ? string |
||
159 | |||
160 | /** |
||
161 | * @param bool $isAutoindex |
||
162 | * @return FilesystemDirectoryDataEntity |
||
163 | */ |
||
164 | public function setIsAutoIndex(bool $isAutoindex) : FilesystemDirectoryDataEntity |
||
170 | |||
171 | /** |
||
172 | * @return bool |
||
173 | */ |
||
174 | public function getIsAutoIndex() : bool |
||
178 | |||
179 | /** |
||
180 | * @param string $path |
||
181 | * @return FilesystemDirectoryDataEntity |
||
182 | */ |
||
183 | public function setPath(string $path) : FilesystemDirectoryDataEntity |
||
189 | |||
190 | /** |
||
191 | * @return null|string |
||
192 | */ |
||
193 | public function getPath() : ? string |
||
197 | |||
198 | /** |
||
199 | * @param string $baseName |
||
200 | * @return FilesystemDirectoryDataEntity |
||
201 | */ |
||
202 | public function setBaseName(string $baseName) : FilesystemDirectoryDataEntity |
||
208 | |||
209 | /** |
||
210 | * @return null|string |
||
211 | */ |
||
212 | public function getBaseName() : ? string |
||
216 | |||
217 | /** |
||
218 | * @param string $uri |
||
219 | * @return FilesystemDirectoryDataEntity |
||
220 | */ |
||
221 | public function setUri(string $uri) : FilesystemDirectoryDataEntity |
||
227 | |||
228 | /** |
||
229 | * @return null|string |
||
230 | */ |
||
231 | public function getUri() : ? string |
||
235 | |||
236 | /** |
||
237 | * @param string $type |
||
238 | * @return FilesystemDirectoryDataEntity |
||
239 | */ |
||
240 | public function setType(string $type) : FilesystemDirectoryDataEntity |
||
246 | |||
247 | /** |
||
248 | * @return null|string |
||
249 | */ |
||
250 | public function getType() : ? string |
||
254 | |||
255 | /** |
||
256 | * @param string $title |
||
257 | * @return FilesystemDirectoryDataEntity |
||
258 | */ |
||
259 | public function setTitle(string $title) : FilesystemDirectoryDataEntity |
||
265 | |||
266 | /** |
||
267 | * @return null|string |
||
268 | */ |
||
269 | public function getTitle() : ? string |
||
273 | } |
||
274 |