1 | <?php |
||
21 | class FilesystemDirectoryEntity extends AbstractEntity |
||
22 | { |
||
23 | /** |
||
24 | * @var array |
||
25 | */ |
||
26 | protected $container = [ |
||
27 | 'id_filesystem_directory' => null, |
||
28 | 'description' => null, |
||
29 | 'directory_type' => null, |
||
30 | 'proxy' => null, |
||
31 | 'is_autoindex' => null, |
||
32 | 'date_created' => null, |
||
33 | 'date_modified' => null, |
||
34 | ]; |
||
35 | |||
36 | /** |
||
37 | * @param int $identifier |
||
38 | * @return FilesystemDirectoryEntity |
||
39 | */ |
||
40 | public function setFilesystemDirectoryId(int $identifier) : FilesystemDirectoryEntity |
||
46 | |||
47 | /** |
||
48 | * @return int|null |
||
49 | */ |
||
50 | public function getFilesystemDirectoryId() : ? int |
||
56 | |||
57 | /** |
||
58 | * @param string $description |
||
59 | * @return FilesystemDirectoryEntity |
||
60 | */ |
||
61 | public function setDescription(string $description) : FilesystemDirectoryEntity |
||
67 | |||
68 | /** |
||
69 | * @return null|string |
||
70 | */ |
||
71 | public function getDescription() : ? string |
||
75 | |||
76 | /** |
||
77 | * @param string $directoryType |
||
78 | * @return FilesystemDirectoryEntity |
||
79 | */ |
||
80 | public function setDirectoryType(string $directoryType) : FilesystemDirectoryEntity |
||
86 | |||
87 | /** |
||
88 | * @return null|string |
||
89 | */ |
||
90 | public function getDirectoryType() : ? string |
||
94 | |||
95 | /** |
||
96 | * @param string $proxy |
||
97 | * @return FilesystemDirectoryEntity |
||
98 | */ |
||
99 | public function setProxy(string $proxy) : FilesystemDirectoryEntity |
||
105 | |||
106 | /** |
||
107 | * @return null|string |
||
108 | */ |
||
109 | public function getProxy() : ? string |
||
113 | |||
114 | /** |
||
115 | * @param bool $isAutoindex |
||
116 | * @return FilesystemDirectoryEntity |
||
117 | */ |
||
118 | public function setIsAutoIndex(bool $isAutoindex) : FilesystemDirectoryEntity |
||
124 | |||
125 | /** |
||
126 | * @return bool |
||
127 | */ |
||
128 | public function getIsAutoIndex() : bool |
||
132 | |||
133 | /** |
||
134 | * @param DateTime $dateTime |
||
135 | * @return FilesystemDirectoryEntity |
||
136 | */ |
||
137 | public function setDateCreated(DateTime $dateTime) : FilesystemDirectoryEntity |
||
143 | |||
144 | /** |
||
145 | * @return null|DateTime |
||
146 | */ |
||
147 | public function getDateCreated() : ? DateTime |
||
153 | |||
154 | /** |
||
155 | * @param DateTime $dateTime |
||
156 | * @return FilesystemDirectoryEntity |
||
157 | */ |
||
158 | public function setDateModified(DateTime $dateTime) : FilesystemDirectoryEntity |
||
164 | |||
165 | /** |
||
166 | * @return null|DateTime |
||
167 | */ |
||
168 | public function getDateModified() : ? DateTime |
||
174 | } |
||
175 |