Complex classes like Mount often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Mount, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
5 | class Mount extends AbstractType |
||
6 | { |
||
7 | protected $After = []; |
||
8 | |||
9 | protected $AmbientCapabilities; |
||
10 | |||
11 | protected $BindsTo = []; |
||
12 | |||
13 | protected $BlockIOAccounting; |
||
14 | |||
15 | protected $BlockIOWeight; |
||
16 | |||
17 | protected $CPUAccounting; |
||
18 | |||
19 | protected $CPUQuotaPerSecUSec; |
||
20 | |||
21 | protected $CPUSchedulingPolicy; |
||
22 | |||
23 | protected $CPUSchedulingPriority; |
||
24 | |||
25 | protected $CPUSchedulingResetOnFork; |
||
26 | |||
27 | protected $CPUShares; |
||
28 | |||
29 | protected $CPUUsageNSec; |
||
30 | |||
31 | protected $CPUWeight; |
||
32 | |||
33 | protected $CapabilityBoundingSet; |
||
34 | |||
35 | protected $Conflicts = []; |
||
36 | |||
37 | protected $ControlGroup; |
||
38 | |||
39 | protected $ControlPID; |
||
40 | |||
41 | protected $Delegate; |
||
42 | |||
43 | protected $DevicePolicy; |
||
44 | |||
45 | protected $DirectoryMode; |
||
46 | |||
47 | protected $Documentation = []; |
||
48 | |||
49 | protected $DynamicUser; |
||
50 | |||
51 | protected $ForceUnmount; |
||
52 | |||
53 | protected $FragmentPath; |
||
54 | |||
55 | protected $GID; |
||
56 | |||
57 | protected $IOAccounting; |
||
58 | |||
59 | protected $IOScheduling; |
||
60 | |||
61 | protected $IOWeight; |
||
62 | |||
63 | protected $IgnoreSIGPIPE; |
||
64 | |||
65 | protected $KillMode; |
||
66 | |||
67 | protected $KillSignal; |
||
68 | |||
69 | protected $LazyUnmount; |
||
70 | |||
71 | protected $LimitAS; |
||
72 | |||
73 | protected $LimitASSoft; |
||
74 | |||
75 | protected $LimitCORE; |
||
76 | |||
77 | protected $LimitCORESoft; |
||
78 | |||
79 | protected $LimitCPU; |
||
80 | |||
81 | protected $LimitCPUSoft; |
||
82 | |||
83 | protected $LimitDATA; |
||
84 | |||
85 | protected $LimitDATASoft; |
||
86 | |||
87 | protected $LimitFSIZE; |
||
88 | |||
89 | protected $LimitFSIZESoft; |
||
90 | |||
91 | protected $LimitLOCKS; |
||
92 | |||
93 | protected $LimitLOCKSSoft; |
||
94 | |||
95 | protected $LimitMEMLOCK; |
||
96 | |||
97 | protected $LimitMEMLOCKSoft; |
||
98 | |||
99 | protected $LimitMSGQUEUE; |
||
100 | |||
101 | protected $LimitMSGQUEUESoft; |
||
102 | |||
103 | protected $LimitNICE; |
||
104 | |||
105 | protected $LimitNICESoft; |
||
106 | |||
107 | protected $LimitNOFILE; |
||
108 | |||
109 | protected $LimitNOFILESoft; |
||
110 | |||
111 | protected $LimitNPROC; |
||
112 | |||
113 | protected $LimitNPROCSoft; |
||
114 | |||
115 | protected $LimitRSS; |
||
116 | |||
117 | protected $LimitRSSSoft; |
||
118 | |||
119 | protected $LimitRTPRIO; |
||
120 | |||
121 | protected $LimitRTPRIOSoft; |
||
122 | |||
123 | protected $LimitRTTIME; |
||
124 | |||
125 | protected $LimitRTTIMESoft; |
||
126 | |||
127 | protected $LimitSIGPENDING; |
||
128 | |||
129 | protected $LimitSIGPENDINGSoft; |
||
130 | |||
131 | protected $LimitSTACK; |
||
132 | |||
133 | protected $LimitSTACKSoft; |
||
134 | |||
135 | protected $MemoryAccounting; |
||
136 | |||
137 | protected $MemoryCurrent; |
||
138 | |||
139 | protected $MemoryDenyWriteExecute; |
||
140 | |||
141 | protected $MemoryHigh; |
||
142 | |||
143 | protected $MemoryLimit; |
||
144 | |||
145 | protected $MemoryLow; |
||
146 | |||
147 | protected $MemoryMax; |
||
148 | |||
149 | protected $MemorySwapMax; |
||
150 | |||
151 | protected $MountFlags; |
||
152 | |||
153 | protected $Nice; |
||
154 | |||
155 | protected $NoNewPrivileges; |
||
156 | |||
157 | protected $NonBlocking; |
||
158 | |||
159 | protected $OOMScoreAdjust; |
||
160 | |||
161 | protected $Options; |
||
162 | |||
163 | protected $PrivateDevices; |
||
164 | |||
165 | protected $PrivateNetwork; |
||
166 | |||
167 | protected $PrivateTmp; |
||
168 | |||
169 | protected $PrivateUsers; |
||
170 | |||
171 | protected $ProtectControlGroups; |
||
172 | |||
173 | protected $ProtectHome; |
||
174 | |||
175 | protected $ProtectKernelModules; |
||
176 | |||
177 | protected $ProtectKernelTunables; |
||
178 | |||
179 | protected $ProtectSystem; |
||
180 | |||
181 | protected $RemoveIPC; |
||
182 | |||
183 | protected $RequiredBy = []; |
||
184 | |||
185 | protected $Requires = []; |
||
186 | |||
187 | protected $RequiresMountsFor = []; |
||
188 | |||
189 | protected $RestrictNamespace; |
||
190 | |||
191 | protected $RestrictRealtime; |
||
192 | |||
193 | protected $Result; |
||
194 | |||
195 | protected $RuntimeDirectoryMode; |
||
196 | |||
197 | protected $SameProcessGroup; |
||
198 | |||
199 | protected $SecureBits; |
||
200 | |||
201 | protected $SendSIGHUP; |
||
202 | |||
203 | protected $SendSIGKILL; |
||
204 | |||
205 | protected $Slice; |
||
206 | |||
207 | protected $SloppyOptions; |
||
208 | |||
209 | protected $SourcePath; |
||
210 | |||
211 | protected $StandardError; |
||
212 | |||
213 | protected $StandardInput; |
||
214 | |||
215 | protected $StandardOutput; |
||
216 | |||
217 | protected $StartupBlockIOWeight; |
||
218 | |||
219 | protected $StartupCPUShares; |
||
220 | |||
221 | protected $StartupCPUWeight; |
||
222 | |||
223 | protected $StartupIOWeight; |
||
224 | |||
225 | protected $SyslogFacility; |
||
226 | |||
227 | protected $SyslogLevel; |
||
228 | |||
229 | protected $SyslogLevelPrefix; |
||
230 | |||
231 | protected $SyslogPriority; |
||
232 | |||
233 | protected $SystemCallErrorNumber; |
||
234 | |||
235 | protected $TTYReset; |
||
236 | |||
237 | protected $TTYVHangup; |
||
238 | |||
239 | protected $TTYVTDisallocate; |
||
240 | |||
241 | protected $TasksAccounting; |
||
242 | |||
243 | protected $TasksCurrent; |
||
244 | |||
245 | protected $TasksMax; |
||
246 | |||
247 | protected $TimeoutUSec; |
||
248 | |||
249 | protected $TimerSlackNSec; |
||
250 | |||
251 | protected $TriggeredBy; |
||
252 | |||
253 | protected $Type; |
||
254 | |||
255 | protected $UID; |
||
256 | |||
257 | protected $UMask; |
||
258 | |||
259 | protected $UnitFilePreset; |
||
260 | |||
261 | protected $UnitFileState; |
||
262 | |||
263 | protected $UtmpMode; |
||
264 | |||
265 | protected $WantedBy = []; |
||
266 | |||
267 | protected $Wants = []; |
||
268 | |||
269 | protected $What; |
||
270 | |||
271 | protected $Where; |
||
272 | |||
273 | /** |
||
274 | * @return array |
||
275 | */ |
||
276 | public function getAfter(): array |
||
280 | |||
281 | /** |
||
282 | * @param array $After |
||
283 | * @return Mount |
||
284 | */ |
||
285 | public function setAfter(array $After): Mount |
||
290 | |||
291 | /** |
||
292 | * @return mixed |
||
293 | */ |
||
294 | public function getAmbientCapabilities() |
||
298 | |||
299 | /** |
||
300 | * @param mixed $AmbientCapabilities |
||
301 | * @return Mount |
||
302 | */ |
||
303 | public function setAmbientCapabilities($AmbientCapabilities) |
||
308 | |||
309 | /** |
||
310 | * @return array |
||
311 | */ |
||
312 | public function getBindsTo(): array |
||
316 | |||
317 | /** |
||
318 | * @param array $BindsTo |
||
319 | * @return Mount |
||
320 | */ |
||
321 | public function setBindsTo(array $BindsTo): Mount |
||
326 | |||
327 | /** |
||
328 | * @return mixed |
||
329 | */ |
||
330 | public function getBlockIOAccounting() |
||
334 | |||
335 | /** |
||
336 | * @param mixed $BlockIOAccounting |
||
337 | * @return Mount |
||
338 | */ |
||
339 | public function setBlockIOAccounting($BlockIOAccounting) |
||
344 | |||
345 | /** |
||
346 | * @return mixed |
||
347 | */ |
||
348 | public function getBlockIOWeight() |
||
352 | |||
353 | /** |
||
354 | * @param mixed $BlockIOWeight |
||
355 | * @return Mount |
||
356 | */ |
||
357 | public function setBlockIOWeight($BlockIOWeight) |
||
362 | |||
363 | /** |
||
364 | * @return mixed |
||
365 | */ |
||
366 | public function getCPUAccounting() |
||
370 | |||
371 | /** |
||
372 | * @param mixed $CPUAccounting |
||
373 | * @return Mount |
||
374 | */ |
||
375 | public function setCPUAccounting($CPUAccounting) |
||
380 | |||
381 | /** |
||
382 | * @return mixed |
||
383 | */ |
||
384 | public function getCPUQuotaPerSecUSec() |
||
388 | |||
389 | /** |
||
390 | * @param mixed $CPUQuotaPerSecUSec |
||
391 | * @return Mount |
||
392 | */ |
||
393 | public function setCPUQuotaPerSecUSec($CPUQuotaPerSecUSec) |
||
398 | |||
399 | /** |
||
400 | * @return mixed |
||
401 | */ |
||
402 | public function getCPUSchedulingPolicy() |
||
406 | |||
407 | /** |
||
408 | * @param mixed $CPUSchedulingPolicy |
||
409 | * @return Mount |
||
410 | */ |
||
411 | public function setCPUSchedulingPolicy($CPUSchedulingPolicy) |
||
416 | |||
417 | /** |
||
418 | * @return mixed |
||
419 | */ |
||
420 | public function getCPUSchedulingPriority() |
||
424 | |||
425 | /** |
||
426 | * @param mixed $CPUSchedulingPriority |
||
427 | * @return Mount |
||
428 | */ |
||
429 | public function setCPUSchedulingPriority($CPUSchedulingPriority) |
||
434 | |||
435 | /** |
||
436 | * @return mixed |
||
437 | */ |
||
438 | public function getCPUSchedulingResetOnFork() |
||
442 | |||
443 | /** |
||
444 | * @param mixed $CPUSchedulingResetOnFork |
||
445 | * @return Mount |
||
446 | */ |
||
447 | public function setCPUSchedulingResetOnFork($CPUSchedulingResetOnFork) |
||
452 | |||
453 | /** |
||
454 | * @return mixed |
||
455 | */ |
||
456 | public function getCPUShares() |
||
460 | |||
461 | /** |
||
462 | * @param mixed $CPUShares |
||
463 | * @return Mount |
||
464 | */ |
||
465 | public function setCPUShares($CPUShares) |
||
470 | |||
471 | /** |
||
472 | * @return mixed |
||
473 | */ |
||
474 | public function getCPUUsageNSec() |
||
478 | |||
479 | /** |
||
480 | * @param mixed $CPUUsageNSec |
||
481 | * @return Mount |
||
482 | */ |
||
483 | public function setCPUUsageNSec($CPUUsageNSec) |
||
488 | |||
489 | /** |
||
490 | * @return mixed |
||
491 | */ |
||
492 | public function getCPUWeight() |
||
496 | |||
497 | /** |
||
498 | * @param mixed $CPUWeight |
||
499 | * @return Mount |
||
500 | */ |
||
501 | public function setCPUWeight($CPUWeight) |
||
506 | |||
507 | /** |
||
508 | * @return mixed |
||
509 | */ |
||
510 | public function getCapabilityBoundingSet() |
||
514 | |||
515 | /** |
||
516 | * @param mixed $CapabilityBoundingSet |
||
517 | * @return Mount |
||
518 | */ |
||
519 | public function setCapabilityBoundingSet($CapabilityBoundingSet) |
||
524 | |||
525 | /** |
||
526 | * @return array |
||
527 | */ |
||
528 | public function getConflicts(): array |
||
532 | |||
533 | /** |
||
534 | * @param array $Conflicts |
||
535 | * @return Mount |
||
536 | */ |
||
537 | public function setConflicts(array $Conflicts): Mount |
||
542 | |||
543 | /** |
||
544 | * @return mixed |
||
545 | */ |
||
546 | public function getControlGroup() |
||
550 | |||
551 | /** |
||
552 | * @param mixed $ControlGroup |
||
553 | * @return Mount |
||
554 | */ |
||
555 | public function setControlGroup($ControlGroup) |
||
560 | |||
561 | /** |
||
562 | * @return mixed |
||
563 | */ |
||
564 | public function getControlPID() |
||
568 | |||
569 | /** |
||
570 | * @param mixed $ControlPID |
||
571 | * @return Mount |
||
572 | */ |
||
573 | public function setControlPID($ControlPID) |
||
578 | |||
579 | /** |
||
580 | * @return mixed |
||
581 | */ |
||
582 | public function getDelegate() |
||
586 | |||
587 | /** |
||
588 | * @param mixed $Delegate |
||
589 | * @return Mount |
||
590 | */ |
||
591 | public function setDelegate($Delegate) |
||
596 | |||
597 | /** |
||
598 | * @return mixed |
||
599 | */ |
||
600 | public function getDevicePolicy() |
||
604 | |||
605 | /** |
||
606 | * @param mixed $DevicePolicy |
||
607 | * @return Mount |
||
608 | */ |
||
609 | public function setDevicePolicy($DevicePolicy) |
||
614 | |||
615 | /** |
||
616 | * @return mixed |
||
617 | */ |
||
618 | public function getDirectoryMode() |
||
622 | |||
623 | /** |
||
624 | * @param mixed $DirectoryMode |
||
625 | * @return Mount |
||
626 | */ |
||
627 | public function setDirectoryMode($DirectoryMode) |
||
632 | |||
633 | /** |
||
634 | * @return array |
||
635 | */ |
||
636 | public function getDocumentation(): array |
||
640 | |||
641 | /** |
||
642 | * @param array $Documentation |
||
643 | * @return Mount |
||
644 | */ |
||
645 | public function setDocumentation(array $Documentation): Mount |
||
650 | |||
651 | /** |
||
652 | * @return mixed |
||
653 | */ |
||
654 | public function getDynamicUser() |
||
658 | |||
659 | /** |
||
660 | * @param mixed $DynamicUser |
||
661 | * @return Mount |
||
662 | */ |
||
663 | public function setDynamicUser($DynamicUser) |
||
668 | |||
669 | /** |
||
670 | * @return mixed |
||
671 | */ |
||
672 | public function getForceUnmount() |
||
676 | |||
677 | /** |
||
678 | * @param mixed $ForceUnmount |
||
679 | * @return Mount |
||
680 | */ |
||
681 | public function setForceUnmount($ForceUnmount) |
||
686 | |||
687 | /** |
||
688 | * @return mixed |
||
689 | */ |
||
690 | public function getFragmentPath() |
||
694 | |||
695 | /** |
||
696 | * @param mixed $FragmentPath |
||
697 | * @return Mount |
||
698 | */ |
||
699 | public function setFragmentPath($FragmentPath) |
||
704 | |||
705 | /** |
||
706 | * @return mixed |
||
707 | */ |
||
708 | public function getGID() |
||
712 | |||
713 | /** |
||
714 | * @param mixed $GID |
||
715 | * @return Mount |
||
716 | */ |
||
717 | public function setGID($GID) |
||
722 | |||
723 | /** |
||
724 | * @return mixed |
||
725 | */ |
||
726 | public function getIOAccounting() |
||
730 | |||
731 | /** |
||
732 | * @param mixed $IOAccounting |
||
733 | * @return Mount |
||
734 | */ |
||
735 | public function setIOAccounting($IOAccounting) |
||
740 | |||
741 | /** |
||
742 | * @return mixed |
||
743 | */ |
||
744 | public function getIOScheduling() |
||
748 | |||
749 | /** |
||
750 | * @param mixed $IOScheduling |
||
751 | * @return Mount |
||
752 | */ |
||
753 | public function setIOScheduling($IOScheduling) |
||
758 | |||
759 | /** |
||
760 | * @return mixed |
||
761 | */ |
||
762 | public function getIOWeight() |
||
766 | |||
767 | /** |
||
768 | * @param mixed $IOWeight |
||
769 | * @return Mount |
||
770 | */ |
||
771 | public function setIOWeight($IOWeight) |
||
776 | |||
777 | /** |
||
778 | * @return mixed |
||
779 | */ |
||
780 | public function getIgnoreSIGPIPE() |
||
784 | |||
785 | /** |
||
786 | * @param mixed $IgnoreSIGPIPE |
||
787 | * @return Mount |
||
788 | */ |
||
789 | public function setIgnoreSIGPIPE($IgnoreSIGPIPE) |
||
794 | |||
795 | /** |
||
796 | * @return mixed |
||
797 | */ |
||
798 | public function getKillMode() |
||
802 | |||
803 | /** |
||
804 | * @param mixed $KillMode |
||
805 | * @return Mount |
||
806 | */ |
||
807 | public function setKillMode($KillMode) |
||
812 | |||
813 | /** |
||
814 | * @return mixed |
||
815 | */ |
||
816 | public function getKillSignal() |
||
820 | |||
821 | /** |
||
822 | * @param mixed $KillSignal |
||
823 | * @return Mount |
||
824 | */ |
||
825 | public function setKillSignal($KillSignal) |
||
830 | |||
831 | /** |
||
832 | * @return mixed |
||
833 | */ |
||
834 | public function getLazyUnmount() |
||
838 | |||
839 | /** |
||
840 | * @param mixed $LazyUnmount |
||
841 | * @return Mount |
||
842 | */ |
||
843 | public function setLazyUnmount($LazyUnmount) |
||
848 | |||
849 | /** |
||
850 | * @return mixed |
||
851 | */ |
||
852 | public function getLimitAS() |
||
856 | |||
857 | /** |
||
858 | * @param mixed $LimitAS |
||
859 | * @return Mount |
||
860 | */ |
||
861 | public function setLimitAS($LimitAS) |
||
866 | |||
867 | /** |
||
868 | * @return mixed |
||
869 | */ |
||
870 | public function getLimitASSoft() |
||
874 | |||
875 | /** |
||
876 | * @param mixed $LimitASSoft |
||
877 | * @return Mount |
||
878 | */ |
||
879 | public function setLimitASSoft($LimitASSoft) |
||
884 | |||
885 | /** |
||
886 | * @return mixed |
||
887 | */ |
||
888 | public function getLimitCORE() |
||
892 | |||
893 | /** |
||
894 | * @param mixed $LimitCORE |
||
895 | * @return Mount |
||
896 | */ |
||
897 | public function setLimitCORE($LimitCORE) |
||
902 | |||
903 | /** |
||
904 | * @return mixed |
||
905 | */ |
||
906 | public function getLimitCORESoft() |
||
910 | |||
911 | /** |
||
912 | * @param mixed $LimitCORESoft |
||
913 | * @return Mount |
||
914 | */ |
||
915 | public function setLimitCORESoft($LimitCORESoft) |
||
920 | |||
921 | /** |
||
922 | * @return mixed |
||
923 | */ |
||
924 | public function getLimitCPU() |
||
928 | |||
929 | /** |
||
930 | * @param mixed $LimitCPU |
||
931 | * @return Mount |
||
932 | */ |
||
933 | public function setLimitCPU($LimitCPU) |
||
938 | |||
939 | /** |
||
940 | * @return mixed |
||
941 | */ |
||
942 | public function getLimitCPUSoft() |
||
946 | |||
947 | /** |
||
948 | * @param mixed $LimitCPUSoft |
||
949 | * @return Mount |
||
950 | */ |
||
951 | public function setLimitCPUSoft($LimitCPUSoft) |
||
956 | |||
957 | /** |
||
958 | * @return mixed |
||
959 | */ |
||
960 | public function getLimitDATA() |
||
964 | |||
965 | /** |
||
966 | * @param mixed $LimitDATA |
||
967 | * @return Mount |
||
968 | */ |
||
969 | public function setLimitDATA($LimitDATA) |
||
974 | |||
975 | /** |
||
976 | * @return mixed |
||
977 | */ |
||
978 | public function getLimitDATASoft() |
||
982 | |||
983 | /** |
||
984 | * @param mixed $LimitDATASoft |
||
985 | * @return Mount |
||
986 | */ |
||
987 | public function setLimitDATASoft($LimitDATASoft) |
||
992 | |||
993 | /** |
||
994 | * @return mixed |
||
995 | */ |
||
996 | public function getLimitFSIZE() |
||
1000 | |||
1001 | /** |
||
1002 | * @param mixed $LimitFSIZE |
||
1003 | * @return Mount |
||
1004 | */ |
||
1005 | public function setLimitFSIZE($LimitFSIZE) |
||
1010 | |||
1011 | /** |
||
1012 | * @return mixed |
||
1013 | */ |
||
1014 | public function getLimitFSIZESoft() |
||
1018 | |||
1019 | /** |
||
1020 | * @param mixed $LimitFSIZESoft |
||
1021 | * @return Mount |
||
1022 | */ |
||
1023 | public function setLimitFSIZESoft($LimitFSIZESoft) |
||
1028 | |||
1029 | /** |
||
1030 | * @return mixed |
||
1031 | */ |
||
1032 | public function getLimitLOCKS() |
||
1036 | |||
1037 | /** |
||
1038 | * @param mixed $LimitLOCKS |
||
1039 | * @return Mount |
||
1040 | */ |
||
1041 | public function setLimitLOCKS($LimitLOCKS) |
||
1046 | |||
1047 | /** |
||
1048 | * @return mixed |
||
1049 | */ |
||
1050 | public function getLimitLOCKSSoft() |
||
1054 | |||
1055 | /** |
||
1056 | * @param mixed $LimitLOCKSSoft |
||
1057 | * @return Mount |
||
1058 | */ |
||
1059 | public function setLimitLOCKSSoft($LimitLOCKSSoft) |
||
1064 | |||
1065 | /** |
||
1066 | * @return mixed |
||
1067 | */ |
||
1068 | public function getLimitMEMLOCK() |
||
1072 | |||
1073 | /** |
||
1074 | * @param mixed $LimitMEMLOCK |
||
1075 | * @return Mount |
||
1076 | */ |
||
1077 | public function setLimitMEMLOCK($LimitMEMLOCK) |
||
1082 | |||
1083 | /** |
||
1084 | * @return mixed |
||
1085 | */ |
||
1086 | public function getLimitMEMLOCKSoft() |
||
1090 | |||
1091 | /** |
||
1092 | * @param mixed $LimitMEMLOCKSoft |
||
1093 | * @return Mount |
||
1094 | */ |
||
1095 | public function setLimitMEMLOCKSoft($LimitMEMLOCKSoft) |
||
1100 | |||
1101 | /** |
||
1102 | * @return mixed |
||
1103 | */ |
||
1104 | public function getLimitMSGQUEUE() |
||
1108 | |||
1109 | /** |
||
1110 | * @param mixed $LimitMSGQUEUE |
||
1111 | * @return Mount |
||
1112 | */ |
||
1113 | public function setLimitMSGQUEUE($LimitMSGQUEUE) |
||
1118 | |||
1119 | /** |
||
1120 | * @return mixed |
||
1121 | */ |
||
1122 | public function getLimitMSGQUEUESoft() |
||
1126 | |||
1127 | /** |
||
1128 | * @param mixed $LimitMSGQUEUESoft |
||
1129 | * @return Mount |
||
1130 | */ |
||
1131 | public function setLimitMSGQUEUESoft($LimitMSGQUEUESoft) |
||
1136 | |||
1137 | /** |
||
1138 | * @return mixed |
||
1139 | */ |
||
1140 | public function getLimitNICE() |
||
1144 | |||
1145 | /** |
||
1146 | * @param mixed $LimitNICE |
||
1147 | * @return Mount |
||
1148 | */ |
||
1149 | public function setLimitNICE($LimitNICE) |
||
1154 | |||
1155 | /** |
||
1156 | * @return mixed |
||
1157 | */ |
||
1158 | public function getLimitNICESoft() |
||
1162 | |||
1163 | /** |
||
1164 | * @param mixed $LimitNICESoft |
||
1165 | * @return Mount |
||
1166 | */ |
||
1167 | public function setLimitNICESoft($LimitNICESoft) |
||
1172 | |||
1173 | /** |
||
1174 | * @return mixed |
||
1175 | */ |
||
1176 | public function getLimitNOFILE() |
||
1180 | |||
1181 | /** |
||
1182 | * @param mixed $LimitNOFILE |
||
1183 | * @return Mount |
||
1184 | */ |
||
1185 | public function setLimitNOFILE($LimitNOFILE) |
||
1190 | |||
1191 | /** |
||
1192 | * @return mixed |
||
1193 | */ |
||
1194 | public function getLimitNOFILESoft() |
||
1198 | |||
1199 | /** |
||
1200 | * @param mixed $LimitNOFILESoft |
||
1201 | * @return Mount |
||
1202 | */ |
||
1203 | public function setLimitNOFILESoft($LimitNOFILESoft) |
||
1208 | |||
1209 | /** |
||
1210 | * @return mixed |
||
1211 | */ |
||
1212 | public function getLimitNPROC() |
||
1216 | |||
1217 | /** |
||
1218 | * @param mixed $LimitNPROC |
||
1219 | * @return Mount |
||
1220 | */ |
||
1221 | public function setLimitNPROC($LimitNPROC) |
||
1226 | |||
1227 | /** |
||
1228 | * @return mixed |
||
1229 | */ |
||
1230 | public function getLimitNPROCSoft() |
||
1234 | |||
1235 | /** |
||
1236 | * @param mixed $LimitNPROCSoft |
||
1237 | * @return Mount |
||
1238 | */ |
||
1239 | public function setLimitNPROCSoft($LimitNPROCSoft) |
||
1244 | |||
1245 | /** |
||
1246 | * @return mixed |
||
1247 | */ |
||
1248 | public function getLimitRSS() |
||
1252 | |||
1253 | /** |
||
1254 | * @param mixed $LimitRSS |
||
1255 | * @return Mount |
||
1256 | */ |
||
1257 | public function setLimitRSS($LimitRSS) |
||
1262 | |||
1263 | /** |
||
1264 | * @return mixed |
||
1265 | */ |
||
1266 | public function getLimitRSSSoft() |
||
1270 | |||
1271 | /** |
||
1272 | * @param mixed $LimitRSSSoft |
||
1273 | * @return Mount |
||
1274 | */ |
||
1275 | public function setLimitRSSSoft($LimitRSSSoft) |
||
1280 | |||
1281 | /** |
||
1282 | * @return mixed |
||
1283 | */ |
||
1284 | public function getLimitRTPRIO() |
||
1288 | |||
1289 | /** |
||
1290 | * @param mixed $LimitRTPRIO |
||
1291 | * @return Mount |
||
1292 | */ |
||
1293 | public function setLimitRTPRIO($LimitRTPRIO) |
||
1298 | |||
1299 | /** |
||
1300 | * @return mixed |
||
1301 | */ |
||
1302 | public function getLimitRTPRIOSoft() |
||
1306 | |||
1307 | /** |
||
1308 | * @param mixed $LimitRTPRIOSoft |
||
1309 | * @return Mount |
||
1310 | */ |
||
1311 | public function setLimitRTPRIOSoft($LimitRTPRIOSoft) |
||
1316 | |||
1317 | /** |
||
1318 | * @return mixed |
||
1319 | */ |
||
1320 | public function getLimitRTTIME() |
||
1324 | |||
1325 | /** |
||
1326 | * @param mixed $LimitRTTIME |
||
1327 | * @return Mount |
||
1328 | */ |
||
1329 | public function setLimitRTTIME($LimitRTTIME) |
||
1334 | |||
1335 | /** |
||
1336 | * @return mixed |
||
1337 | */ |
||
1338 | public function getLimitRTTIMESoft() |
||
1342 | |||
1343 | /** |
||
1344 | * @param mixed $LimitRTTIMESoft |
||
1345 | * @return Mount |
||
1346 | */ |
||
1347 | public function setLimitRTTIMESoft($LimitRTTIMESoft) |
||
1352 | |||
1353 | /** |
||
1354 | * @return mixed |
||
1355 | */ |
||
1356 | public function getLimitSIGPENDING() |
||
1360 | |||
1361 | /** |
||
1362 | * @param mixed $LimitSIGPENDING |
||
1363 | * @return Mount |
||
1364 | */ |
||
1365 | public function setLimitSIGPENDING($LimitSIGPENDING) |
||
1370 | |||
1371 | /** |
||
1372 | * @return mixed |
||
1373 | */ |
||
1374 | public function getLimitSIGPENDINGSoft() |
||
1378 | |||
1379 | /** |
||
1380 | * @param mixed $LimitSIGPENDINGSoft |
||
1381 | * @return Mount |
||
1382 | */ |
||
1383 | public function setLimitSIGPENDINGSoft($LimitSIGPENDINGSoft) |
||
1388 | |||
1389 | /** |
||
1390 | * @return mixed |
||
1391 | */ |
||
1392 | public function getLimitSTACK() |
||
1396 | |||
1397 | /** |
||
1398 | * @param mixed $LimitSTACK |
||
1399 | * @return Mount |
||
1400 | */ |
||
1401 | public function setLimitSTACK($LimitSTACK) |
||
1406 | |||
1407 | /** |
||
1408 | * @return mixed |
||
1409 | */ |
||
1410 | public function getLimitSTACKSoft() |
||
1414 | |||
1415 | /** |
||
1416 | * @param mixed $LimitSTACKSoft |
||
1417 | * @return Mount |
||
1418 | */ |
||
1419 | public function setLimitSTACKSoft($LimitSTACKSoft) |
||
1424 | |||
1425 | /** |
||
1426 | * @return mixed |
||
1427 | */ |
||
1428 | public function getMemoryAccounting() |
||
1432 | |||
1433 | /** |
||
1434 | * @param mixed $MemoryAccounting |
||
1435 | * @return Mount |
||
1436 | */ |
||
1437 | public function setMemoryAccounting($MemoryAccounting) |
||
1442 | |||
1443 | /** |
||
1444 | * @return mixed |
||
1445 | */ |
||
1446 | public function getMemoryCurrent() |
||
1450 | |||
1451 | /** |
||
1452 | * @param mixed $MemoryCurrent |
||
1453 | * @return Mount |
||
1454 | */ |
||
1455 | public function setMemoryCurrent($MemoryCurrent) |
||
1460 | |||
1461 | /** |
||
1462 | * @return mixed |
||
1463 | */ |
||
1464 | public function getMemoryDenyWriteExecute() |
||
1468 | |||
1469 | /** |
||
1470 | * @param mixed $MemoryDenyWriteExecute |
||
1471 | * @return Mount |
||
1472 | */ |
||
1473 | public function setMemoryDenyWriteExecute($MemoryDenyWriteExecute) |
||
1478 | |||
1479 | /** |
||
1480 | * @return mixed |
||
1481 | */ |
||
1482 | public function getMemoryHigh() |
||
1486 | |||
1487 | /** |
||
1488 | * @param mixed $MemoryHigh |
||
1489 | * @return Mount |
||
1490 | */ |
||
1491 | public function setMemoryHigh($MemoryHigh) |
||
1496 | |||
1497 | /** |
||
1498 | * @return mixed |
||
1499 | */ |
||
1500 | public function getMemoryLimit() |
||
1504 | |||
1505 | /** |
||
1506 | * @param mixed $MemoryLimit |
||
1507 | * @return Mount |
||
1508 | */ |
||
1509 | public function setMemoryLimit($MemoryLimit) |
||
1514 | |||
1515 | /** |
||
1516 | * @return mixed |
||
1517 | */ |
||
1518 | public function getMemoryLow() |
||
1522 | |||
1523 | /** |
||
1524 | * @param mixed $MemoryLow |
||
1525 | * @return Mount |
||
1526 | */ |
||
1527 | public function setMemoryLow($MemoryLow) |
||
1532 | |||
1533 | /** |
||
1534 | * @return mixed |
||
1535 | */ |
||
1536 | public function getMemoryMax() |
||
1540 | |||
1541 | /** |
||
1542 | * @param mixed $MemoryMax |
||
1543 | * @return Mount |
||
1544 | */ |
||
1545 | public function setMemoryMax($MemoryMax) |
||
1550 | |||
1551 | /** |
||
1552 | * @return mixed |
||
1553 | */ |
||
1554 | public function getMemorySwapMax() |
||
1558 | |||
1559 | /** |
||
1560 | * @param mixed $MemorySwapMax |
||
1561 | * @return Mount |
||
1562 | */ |
||
1563 | public function setMemorySwapMax($MemorySwapMax) |
||
1568 | |||
1569 | /** |
||
1570 | * @return mixed |
||
1571 | */ |
||
1572 | public function getMountFlags() |
||
1576 | |||
1577 | /** |
||
1578 | * @param mixed $MountFlags |
||
1579 | * @return Mount |
||
1580 | */ |
||
1581 | public function setMountFlags($MountFlags) |
||
1586 | |||
1587 | /** |
||
1588 | * @return mixed |
||
1589 | */ |
||
1590 | public function getNice() |
||
1594 | |||
1595 | /** |
||
1596 | * @param mixed $Nice |
||
1597 | * @return Mount |
||
1598 | */ |
||
1599 | public function setNice($Nice) |
||
1604 | |||
1605 | /** |
||
1606 | * @return mixed |
||
1607 | */ |
||
1608 | public function getNoNewPrivileges() |
||
1612 | |||
1613 | /** |
||
1614 | * @param mixed $NoNewPrivileges |
||
1615 | * @return Mount |
||
1616 | */ |
||
1617 | public function setNoNewPrivileges($NoNewPrivileges) |
||
1622 | |||
1623 | /** |
||
1624 | * @return mixed |
||
1625 | */ |
||
1626 | public function getNonBlocking() |
||
1630 | |||
1631 | /** |
||
1632 | * @param mixed $NonBlocking |
||
1633 | * @return Mount |
||
1634 | */ |
||
1635 | public function setNonBlocking($NonBlocking) |
||
1640 | |||
1641 | /** |
||
1642 | * @return mixed |
||
1643 | */ |
||
1644 | public function getOOMScoreAdjust() |
||
1648 | |||
1649 | /** |
||
1650 | * @param mixed $OOMScoreAdjust |
||
1651 | * @return Mount |
||
1652 | */ |
||
1653 | public function setOOMScoreAdjust($OOMScoreAdjust) |
||
1658 | |||
1659 | /** |
||
1660 | * @return mixed |
||
1661 | */ |
||
1662 | public function getOptions() |
||
1666 | |||
1667 | /** |
||
1668 | * @param mixed $Options |
||
1669 | * @return Mount |
||
1670 | */ |
||
1671 | public function setOptions($Options) |
||
1676 | |||
1677 | /** |
||
1678 | * @return mixed |
||
1679 | */ |
||
1680 | public function getPrivateDevices() |
||
1684 | |||
1685 | /** |
||
1686 | * @param mixed $PrivateDevices |
||
1687 | * @return Mount |
||
1688 | */ |
||
1689 | public function setPrivateDevices($PrivateDevices) |
||
1694 | |||
1695 | /** |
||
1696 | * @return mixed |
||
1697 | */ |
||
1698 | public function getPrivateNetwork() |
||
1702 | |||
1703 | /** |
||
1704 | * @param mixed $PrivateNetwork |
||
1705 | * @return Mount |
||
1706 | */ |
||
1707 | public function setPrivateNetwork($PrivateNetwork) |
||
1712 | |||
1713 | /** |
||
1714 | * @return mixed |
||
1715 | */ |
||
1716 | public function getPrivateTmp() |
||
1720 | |||
1721 | /** |
||
1722 | * @param mixed $PrivateTmp |
||
1723 | * @return Mount |
||
1724 | */ |
||
1725 | public function setPrivateTmp($PrivateTmp) |
||
1730 | |||
1731 | /** |
||
1732 | * @return mixed |
||
1733 | */ |
||
1734 | public function getPrivateUsers() |
||
1738 | |||
1739 | /** |
||
1740 | * @param mixed $PrivateUsers |
||
1741 | * @return Mount |
||
1742 | */ |
||
1743 | public function setPrivateUsers($PrivateUsers) |
||
1748 | |||
1749 | /** |
||
1750 | * @return mixed |
||
1751 | */ |
||
1752 | public function getProtectControlGroups() |
||
1756 | |||
1757 | /** |
||
1758 | * @param mixed $ProtectControlGroups |
||
1759 | * @return Mount |
||
1760 | */ |
||
1761 | public function setProtectControlGroups($ProtectControlGroups) |
||
1766 | |||
1767 | /** |
||
1768 | * @return mixed |
||
1769 | */ |
||
1770 | public function getProtectHome() |
||
1774 | |||
1775 | /** |
||
1776 | * @param mixed $ProtectHome |
||
1777 | * @return Mount |
||
1778 | */ |
||
1779 | public function setProtectHome($ProtectHome) |
||
1784 | |||
1785 | /** |
||
1786 | * @return mixed |
||
1787 | */ |
||
1788 | public function getProtectKernelModules() |
||
1792 | |||
1793 | /** |
||
1794 | * @param mixed $ProtectKernelModules |
||
1795 | * @return Mount |
||
1796 | */ |
||
1797 | public function setProtectKernelModules($ProtectKernelModules) |
||
1802 | |||
1803 | /** |
||
1804 | * @return mixed |
||
1805 | */ |
||
1806 | public function getProtectKernelTunables() |
||
1810 | |||
1811 | /** |
||
1812 | * @param mixed $ProtectKernelTunables |
||
1813 | * @return Mount |
||
1814 | */ |
||
1815 | public function setProtectKernelTunables($ProtectKernelTunables) |
||
1820 | |||
1821 | /** |
||
1822 | * @return mixed |
||
1823 | */ |
||
1824 | public function getProtectSystem() |
||
1828 | |||
1829 | /** |
||
1830 | * @param mixed $ProtectSystem |
||
1831 | * @return Mount |
||
1832 | */ |
||
1833 | public function setProtectSystem($ProtectSystem) |
||
1838 | |||
1839 | /** |
||
1840 | * @return mixed |
||
1841 | */ |
||
1842 | public function getRemoveIPC() |
||
1846 | |||
1847 | /** |
||
1848 | * @param mixed $RemoveIPC |
||
1849 | * @return Mount |
||
1850 | */ |
||
1851 | public function setRemoveIPC($RemoveIPC) |
||
1856 | |||
1857 | /** |
||
1858 | * @return array |
||
1859 | */ |
||
1860 | public function getRequiredBy(): array |
||
1864 | |||
1865 | /** |
||
1866 | * @param array $RequiredBy |
||
1867 | * @return Mount |
||
1868 | */ |
||
1869 | public function setRequiredBy(array $RequiredBy): Mount |
||
1874 | |||
1875 | /** |
||
1876 | * @return array |
||
1877 | */ |
||
1878 | public function getRequires(): array |
||
1882 | |||
1883 | /** |
||
1884 | * @param array $Requires |
||
1885 | * @return Mount |
||
1886 | */ |
||
1887 | public function setRequires(array $Requires): Mount |
||
1892 | |||
1893 | /** |
||
1894 | * @return array |
||
1895 | */ |
||
1896 | public function getRequiresMountsFor(): array |
||
1900 | |||
1901 | /** |
||
1902 | * @param array $RequiresMountsFor |
||
1903 | * @return Mount |
||
1904 | */ |
||
1905 | public function setRequiresMountsFor(array $RequiresMountsFor): Mount |
||
1910 | |||
1911 | /** |
||
1912 | * @return mixed |
||
1913 | */ |
||
1914 | public function getRestrictNamespace() |
||
1918 | |||
1919 | /** |
||
1920 | * @param mixed $RestrictNamespace |
||
1921 | * @return Mount |
||
1922 | */ |
||
1923 | public function setRestrictNamespace($RestrictNamespace) |
||
1928 | |||
1929 | /** |
||
1930 | * @return mixed |
||
1931 | */ |
||
1932 | public function getRestrictRealtime() |
||
1936 | |||
1937 | /** |
||
1938 | * @param mixed $RestrictRealtime |
||
1939 | * @return Mount |
||
1940 | */ |
||
1941 | public function setRestrictRealtime($RestrictRealtime) |
||
1946 | |||
1947 | /** |
||
1948 | * @return mixed |
||
1949 | */ |
||
1950 | public function getResult() |
||
1954 | |||
1955 | /** |
||
1956 | * @param mixed $Result |
||
1957 | * @return Mount |
||
1958 | */ |
||
1959 | public function setResult($Result) |
||
1964 | |||
1965 | /** |
||
1966 | * @return mixed |
||
1967 | */ |
||
1968 | public function getRuntimeDirectoryMode() |
||
1972 | |||
1973 | /** |
||
1974 | * @param mixed $RuntimeDirectoryMode |
||
1975 | * @return Mount |
||
1976 | */ |
||
1977 | public function setRuntimeDirectoryMode($RuntimeDirectoryMode) |
||
1982 | |||
1983 | /** |
||
1984 | * @return mixed |
||
1985 | */ |
||
1986 | public function getSameProcessGroup() |
||
1990 | |||
1991 | /** |
||
1992 | * @param mixed $SameProcessGroup |
||
1993 | * @return Mount |
||
1994 | */ |
||
1995 | public function setSameProcessGroup($SameProcessGroup) |
||
2000 | |||
2001 | /** |
||
2002 | * @return mixed |
||
2003 | */ |
||
2004 | public function getSecureBits() |
||
2008 | |||
2009 | /** |
||
2010 | * @param mixed $SecureBits |
||
2011 | * @return Mount |
||
2012 | */ |
||
2013 | public function setSecureBits($SecureBits) |
||
2018 | |||
2019 | /** |
||
2020 | * @return mixed |
||
2021 | */ |
||
2022 | public function getSendSIGHUP() |
||
2026 | |||
2027 | /** |
||
2028 | * @param mixed $SendSIGHUP |
||
2029 | * @return Mount |
||
2030 | */ |
||
2031 | public function setSendSIGHUP($SendSIGHUP) |
||
2036 | |||
2037 | /** |
||
2038 | * @return mixed |
||
2039 | */ |
||
2040 | public function getSendSIGKILL() |
||
2044 | |||
2045 | /** |
||
2046 | * @param mixed $SendSIGKILL |
||
2047 | * @return Mount |
||
2048 | */ |
||
2049 | public function setSendSIGKILL($SendSIGKILL) |
||
2054 | |||
2055 | /** |
||
2056 | * @return mixed |
||
2057 | */ |
||
2058 | public function getSlice() |
||
2062 | |||
2063 | /** |
||
2064 | * @param mixed $Slice |
||
2065 | * @return Mount |
||
2066 | */ |
||
2067 | public function setSlice($Slice) |
||
2072 | |||
2073 | /** |
||
2074 | * @return mixed |
||
2075 | */ |
||
2076 | public function getSloppyOptions() |
||
2080 | |||
2081 | /** |
||
2082 | * @param mixed $SloppyOptions |
||
2083 | * @return Mount |
||
2084 | */ |
||
2085 | public function setSloppyOptions($SloppyOptions) |
||
2090 | |||
2091 | /** |
||
2092 | * @return mixed |
||
2093 | */ |
||
2094 | public function getSourcePath() |
||
2098 | |||
2099 | /** |
||
2100 | * @param mixed $SourcePath |
||
2101 | * @return Mount |
||
2102 | */ |
||
2103 | public function setSourcePath($SourcePath) |
||
2108 | |||
2109 | /** |
||
2110 | * @return mixed |
||
2111 | */ |
||
2112 | public function getStandardError() |
||
2116 | |||
2117 | /** |
||
2118 | * @param mixed $StandardError |
||
2119 | * @return Mount |
||
2120 | */ |
||
2121 | public function setStandardError($StandardError) |
||
2126 | |||
2127 | /** |
||
2128 | * @return mixed |
||
2129 | */ |
||
2130 | public function getStandardInput() |
||
2134 | |||
2135 | /** |
||
2136 | * @param mixed $StandardInput |
||
2137 | * @return Mount |
||
2138 | */ |
||
2139 | public function setStandardInput($StandardInput) |
||
2144 | |||
2145 | /** |
||
2146 | * @return mixed |
||
2147 | */ |
||
2148 | public function getStandardOutput() |
||
2152 | |||
2153 | /** |
||
2154 | * @param mixed $StandardOutput |
||
2155 | * @return Mount |
||
2156 | */ |
||
2157 | public function setStandardOutput($StandardOutput) |
||
2162 | |||
2163 | /** |
||
2164 | * @return mixed |
||
2165 | */ |
||
2166 | public function getStartupBlockIOWeight() |
||
2170 | |||
2171 | /** |
||
2172 | * @param mixed $StartupBlockIOWeight |
||
2173 | * @return Mount |
||
2174 | */ |
||
2175 | public function setStartupBlockIOWeight($StartupBlockIOWeight) |
||
2180 | |||
2181 | /** |
||
2182 | * @return mixed |
||
2183 | */ |
||
2184 | public function getStartupCPUShares() |
||
2188 | |||
2189 | /** |
||
2190 | * @param mixed $StartupCPUShares |
||
2191 | * @return Mount |
||
2192 | */ |
||
2193 | public function setStartupCPUShares($StartupCPUShares) |
||
2198 | |||
2199 | /** |
||
2200 | * @return mixed |
||
2201 | */ |
||
2202 | public function getStartupCPUWeight() |
||
2206 | |||
2207 | /** |
||
2208 | * @param mixed $StartupCPUWeight |
||
2209 | * @return Mount |
||
2210 | */ |
||
2211 | public function setStartupCPUWeight($StartupCPUWeight) |
||
2216 | |||
2217 | /** |
||
2218 | * @return mixed |
||
2219 | */ |
||
2220 | public function getStartupIOWeight() |
||
2224 | |||
2225 | /** |
||
2226 | * @param mixed $StartupIOWeight |
||
2227 | * @return Mount |
||
2228 | */ |
||
2229 | public function setStartupIOWeight($StartupIOWeight) |
||
2234 | |||
2235 | /** |
||
2236 | * @return mixed |
||
2237 | */ |
||
2238 | public function getSyslogFacility() |
||
2242 | |||
2243 | /** |
||
2244 | * @param mixed $SyslogFacility |
||
2245 | * @return Mount |
||
2246 | */ |
||
2247 | public function setSyslogFacility($SyslogFacility) |
||
2252 | |||
2253 | /** |
||
2254 | * @return mixed |
||
2255 | */ |
||
2256 | public function getSyslogLevel() |
||
2260 | |||
2261 | /** |
||
2262 | * @param mixed $SyslogLevel |
||
2263 | * @return Mount |
||
2264 | */ |
||
2265 | public function setSyslogLevel($SyslogLevel) |
||
2270 | |||
2271 | /** |
||
2272 | * @return mixed |
||
2273 | */ |
||
2274 | public function getSyslogLevelPrefix() |
||
2278 | |||
2279 | /** |
||
2280 | * @param mixed $SyslogLevelPrefix |
||
2281 | * @return Mount |
||
2282 | */ |
||
2283 | public function setSyslogLevelPrefix($SyslogLevelPrefix) |
||
2288 | |||
2289 | /** |
||
2290 | * @return mixed |
||
2291 | */ |
||
2292 | public function getSyslogPriority() |
||
2296 | |||
2297 | /** |
||
2298 | * @param mixed $SyslogPriority |
||
2299 | * @return Mount |
||
2300 | */ |
||
2301 | public function setSyslogPriority($SyslogPriority) |
||
2306 | |||
2307 | /** |
||
2308 | * @return mixed |
||
2309 | */ |
||
2310 | public function getSystemCallErrorNumber() |
||
2314 | |||
2315 | /** |
||
2316 | * @param mixed $SystemCallErrorNumber |
||
2317 | * @return Mount |
||
2318 | */ |
||
2319 | public function setSystemCallErrorNumber($SystemCallErrorNumber) |
||
2324 | |||
2325 | /** |
||
2326 | * @return mixed |
||
2327 | */ |
||
2328 | public function getTTYReset() |
||
2332 | |||
2333 | /** |
||
2334 | * @param mixed $TTYReset |
||
2335 | * @return Mount |
||
2336 | */ |
||
2337 | public function setTTYReset($TTYReset) |
||
2342 | |||
2343 | /** |
||
2344 | * @return mixed |
||
2345 | */ |
||
2346 | public function getTTYVHangup() |
||
2350 | |||
2351 | /** |
||
2352 | * @param mixed $TTYVHangup |
||
2353 | * @return Mount |
||
2354 | */ |
||
2355 | public function setTTYVHangup($TTYVHangup) |
||
2360 | |||
2361 | /** |
||
2362 | * @return mixed |
||
2363 | */ |
||
2364 | public function getTTYVTDisallocate() |
||
2368 | |||
2369 | /** |
||
2370 | * @param mixed $TTYVTDisallocate |
||
2371 | * @return Mount |
||
2372 | */ |
||
2373 | public function setTTYVTDisallocate($TTYVTDisallocate) |
||
2378 | |||
2379 | /** |
||
2380 | * @return mixed |
||
2381 | */ |
||
2382 | public function getTasksAccounting() |
||
2386 | |||
2387 | /** |
||
2388 | * @param mixed $TasksAccounting |
||
2389 | * @return Mount |
||
2390 | */ |
||
2391 | public function setTasksAccounting($TasksAccounting) |
||
2396 | |||
2397 | /** |
||
2398 | * @return mixed |
||
2399 | */ |
||
2400 | public function getTasksCurrent() |
||
2404 | |||
2405 | /** |
||
2406 | * @param mixed $TasksCurrent |
||
2407 | * @return Mount |
||
2408 | */ |
||
2409 | public function setTasksCurrent($TasksCurrent) |
||
2414 | |||
2415 | /** |
||
2416 | * @return mixed |
||
2417 | */ |
||
2418 | public function getTasksMax() |
||
2422 | |||
2423 | /** |
||
2424 | * @param mixed $TasksMax |
||
2425 | * @return Mount |
||
2426 | */ |
||
2427 | public function setTasksMax($TasksMax) |
||
2432 | |||
2433 | /** |
||
2434 | * @return mixed |
||
2435 | */ |
||
2436 | public function getTimeoutUSec() |
||
2440 | |||
2441 | /** |
||
2442 | * @param mixed $TimeoutUSec |
||
2443 | * @return Mount |
||
2444 | */ |
||
2445 | public function setTimeoutUSec($TimeoutUSec) |
||
2450 | |||
2451 | /** |
||
2452 | * @return mixed |
||
2453 | */ |
||
2454 | public function getTimerSlackNSec() |
||
2458 | |||
2459 | /** |
||
2460 | * @param mixed $TimerSlackNSec |
||
2461 | * @return Mount |
||
2462 | */ |
||
2463 | public function setTimerSlackNSec($TimerSlackNSec) |
||
2468 | |||
2469 | /** |
||
2470 | * @return mixed |
||
2471 | */ |
||
2472 | public function getTriggeredBy() |
||
2476 | |||
2477 | /** |
||
2478 | * @param mixed $TriggeredBy |
||
2479 | * @return Mount |
||
2480 | */ |
||
2481 | public function setTriggeredBy($TriggeredBy) |
||
2486 | |||
2487 | /** |
||
2488 | * @return mixed |
||
2489 | */ |
||
2490 | public function getType() |
||
2494 | |||
2495 | /** |
||
2496 | * @param mixed $Type |
||
2497 | * @return Mount |
||
2498 | */ |
||
2499 | public function setType($Type) |
||
2504 | |||
2505 | /** |
||
2506 | * @return mixed |
||
2507 | */ |
||
2508 | public function getUID() |
||
2512 | |||
2513 | /** |
||
2514 | * @param mixed $UID |
||
2515 | * @return Mount |
||
2516 | */ |
||
2517 | public function setUID($UID) |
||
2522 | |||
2523 | /** |
||
2524 | * @return mixed |
||
2525 | */ |
||
2526 | public function getUMask() |
||
2530 | |||
2531 | /** |
||
2532 | * @param mixed $UMask |
||
2533 | * @return Mount |
||
2534 | */ |
||
2535 | public function setUMask($UMask) |
||
2540 | |||
2541 | /** |
||
2542 | * @return mixed |
||
2543 | */ |
||
2544 | public function getUnitFilePreset() |
||
2548 | |||
2549 | /** |
||
2550 | * @param mixed $UnitFilePreset |
||
2551 | * @return Mount |
||
2552 | */ |
||
2553 | public function setUnitFilePreset($UnitFilePreset) |
||
2558 | |||
2559 | /** |
||
2560 | * @return mixed |
||
2561 | */ |
||
2562 | public function getUnitFileState() |
||
2566 | |||
2567 | /** |
||
2568 | * @param mixed $UnitFileState |
||
2569 | * @return Mount |
||
2570 | */ |
||
2571 | public function setUnitFileState($UnitFileState) |
||
2576 | |||
2577 | /** |
||
2578 | * @return mixed |
||
2579 | */ |
||
2580 | public function getUtmpMode() |
||
2584 | |||
2585 | /** |
||
2586 | * @param mixed $UtmpMode |
||
2587 | * @return Mount |
||
2588 | */ |
||
2589 | public function setUtmpMode($UtmpMode) |
||
2594 | |||
2595 | /** |
||
2596 | * @return array |
||
2597 | */ |
||
2598 | public function getWantedBy(): array |
||
2602 | |||
2603 | /** |
||
2604 | * @param array $WantedBy |
||
2605 | * @return Mount |
||
2606 | */ |
||
2607 | public function setWantedBy(array $WantedBy): Mount |
||
2612 | |||
2613 | /** |
||
2614 | * @return array |
||
2615 | */ |
||
2616 | public function getWants(): array |
||
2620 | |||
2621 | /** |
||
2622 | * @param array $Wants |
||
2623 | * @return Mount |
||
2624 | */ |
||
2625 | public function setWants(array $Wants): Mount |
||
2630 | |||
2631 | /** |
||
2632 | * @return mixed |
||
2633 | */ |
||
2634 | public function getWhat() |
||
2638 | |||
2639 | /** |
||
2640 | * @param mixed $What |
||
2641 | * @return Mount |
||
2642 | */ |
||
2643 | public function setWhat($What) |
||
2648 | |||
2649 | /** |
||
2650 | * @return mixed |
||
2651 | */ |
||
2652 | public function getWhere() |
||
2656 | |||
2657 | /** |
||
2658 | * @param mixed $Where |
||
2659 | * @return Mount |
||
2660 | */ |
||
2661 | public function setWhere($Where) |
||
2666 | } |
||
2667 |