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 | private $After = []; |
||
| 8 | |||
| 9 | private $AmbientCapabilities; |
||
| 10 | |||
| 11 | private $BindsTo = []; |
||
| 12 | |||
| 13 | private $BlockIOAccounting; |
||
| 14 | |||
| 15 | private $BlockIOWeight; |
||
| 16 | |||
| 17 | private $CPUAccounting; |
||
| 18 | |||
| 19 | private $CPUQuotaPerSecUSec; |
||
| 20 | |||
| 21 | private $CPUSchedulingPolicy; |
||
| 22 | |||
| 23 | private $CPUSchedulingPriority; |
||
| 24 | |||
| 25 | private $CPUSchedulingResetOnFork; |
||
| 26 | |||
| 27 | private $CPUShares; |
||
| 28 | |||
| 29 | private $CPUUsageNSec; |
||
| 30 | |||
| 31 | private $CPUWeight; |
||
| 32 | |||
| 33 | private $CapabilityBoundingSet; |
||
| 34 | |||
| 35 | private $Conflicts = []; |
||
| 36 | |||
| 37 | private $ControlGroup; |
||
| 38 | |||
| 39 | private $ControlPID; |
||
| 40 | |||
| 41 | private $Delegate; |
||
| 42 | |||
| 43 | private $DevicePolicy; |
||
| 44 | |||
| 45 | private $DirectoryMode; |
||
| 46 | |||
| 47 | private $Documentation = []; |
||
| 48 | |||
| 49 | private $DynamicUser; |
||
| 50 | |||
| 51 | private $ForceUnmount; |
||
| 52 | |||
| 53 | private $FragmentPath; |
||
| 54 | |||
| 55 | private $GID; |
||
| 56 | |||
| 57 | private $IOAccounting; |
||
| 58 | |||
| 59 | private $IOScheduling; |
||
| 60 | |||
| 61 | private $IOWeight; |
||
| 62 | |||
| 63 | private $IgnoreSIGPIPE; |
||
| 64 | |||
| 65 | private $KillMode; |
||
| 66 | |||
| 67 | private $KillSignal; |
||
| 68 | |||
| 69 | private $LazyUnmount; |
||
| 70 | |||
| 71 | private $LimitAS; |
||
| 72 | |||
| 73 | private $LimitASSoft; |
||
| 74 | |||
| 75 | private $LimitCORE; |
||
| 76 | |||
| 77 | private $LimitCORESoft; |
||
| 78 | |||
| 79 | private $LimitCPU; |
||
| 80 | |||
| 81 | private $LimitCPUSoft; |
||
| 82 | |||
| 83 | private $LimitDATA; |
||
| 84 | |||
| 85 | private $LimitDATASoft; |
||
| 86 | |||
| 87 | private $LimitFSIZE; |
||
| 88 | |||
| 89 | private $LimitFSIZESoft; |
||
| 90 | |||
| 91 | private $LimitLOCKS; |
||
| 92 | |||
| 93 | private $LimitLOCKSSoft; |
||
| 94 | |||
| 95 | private $LimitMEMLOCK; |
||
| 96 | |||
| 97 | private $LimitMEMLOCKSoft; |
||
| 98 | |||
| 99 | private $LimitMSGQUEUE; |
||
| 100 | |||
| 101 | private $LimitMSGQUEUESoft; |
||
| 102 | |||
| 103 | private $LimitNICE; |
||
| 104 | |||
| 105 | private $LimitNICESoft; |
||
| 106 | |||
| 107 | private $LimitNOFILE; |
||
| 108 | |||
| 109 | private $LimitNOFILESoft; |
||
| 110 | |||
| 111 | private $LimitNPROC; |
||
| 112 | |||
| 113 | private $LimitNPROCSoft; |
||
| 114 | |||
| 115 | private $LimitRSS; |
||
| 116 | |||
| 117 | private $LimitRSSSoft; |
||
| 118 | |||
| 119 | private $LimitRTPRIO; |
||
| 120 | |||
| 121 | private $LimitRTPRIOSoft; |
||
| 122 | |||
| 123 | private $LimitRTTIME; |
||
| 124 | |||
| 125 | private $LimitRTTIMESoft; |
||
| 126 | |||
| 127 | private $LimitSIGPENDING; |
||
| 128 | |||
| 129 | private $LimitSIGPENDINGSoft; |
||
| 130 | |||
| 131 | private $LimitSTACK; |
||
| 132 | |||
| 133 | private $LimitSTACKSoft; |
||
| 134 | |||
| 135 | private $MemoryAccounting; |
||
| 136 | |||
| 137 | private $MemoryCurrent; |
||
| 138 | |||
| 139 | private $MemoryDenyWriteExecute; |
||
| 140 | |||
| 141 | private $MemoryHigh; |
||
| 142 | |||
| 143 | private $MemoryLimit; |
||
| 144 | |||
| 145 | private $MemoryLow; |
||
| 146 | |||
| 147 | private $MemoryMax; |
||
| 148 | |||
| 149 | private $MemorySwapMax; |
||
| 150 | |||
| 151 | private $MountFlags; |
||
| 152 | |||
| 153 | private $Nice; |
||
| 154 | |||
| 155 | private $NoNewPrivileges; |
||
| 156 | |||
| 157 | private $NonBlocking; |
||
| 158 | |||
| 159 | private $OOMScoreAdjust; |
||
| 160 | |||
| 161 | private $Options; |
||
| 162 | |||
| 163 | private $PrivateDevices; |
||
| 164 | |||
| 165 | private $PrivateNetwork; |
||
| 166 | |||
| 167 | private $PrivateTmp; |
||
| 168 | |||
| 169 | private $PrivateUsers; |
||
| 170 | |||
| 171 | private $ProtectControlGroups; |
||
| 172 | |||
| 173 | private $ProtectHome; |
||
| 174 | |||
| 175 | private $ProtectKernelModules; |
||
| 176 | |||
| 177 | private $ProtectKernelTunables; |
||
| 178 | |||
| 179 | private $ProtectSystem; |
||
| 180 | |||
| 181 | private $RemoveIPC; |
||
| 182 | |||
| 183 | private $RequiredBy = []; |
||
| 184 | |||
| 185 | private $Requires = []; |
||
| 186 | |||
| 187 | private $RequiresMountsFor = []; |
||
| 188 | |||
| 189 | private $RestrictNamespace; |
||
| 190 | |||
| 191 | private $RestrictRealtime; |
||
| 192 | |||
| 193 | private $Result; |
||
| 194 | |||
| 195 | private $RuntimeDirectoryMode; |
||
| 196 | |||
| 197 | private $SameProcessGroup; |
||
| 198 | |||
| 199 | private $SecureBits; |
||
| 200 | |||
| 201 | private $SendSIGHUP; |
||
| 202 | |||
| 203 | private $SendSIGKILL; |
||
| 204 | |||
| 205 | private $Slice; |
||
| 206 | |||
| 207 | private $SloppyOptions; |
||
| 208 | |||
| 209 | private $SourcePath; |
||
| 210 | |||
| 211 | private $StandardError; |
||
| 212 | |||
| 213 | private $StandardInput; |
||
| 214 | |||
| 215 | private $StandardOutput; |
||
| 216 | |||
| 217 | private $StartupBlockIOWeight; |
||
| 218 | |||
| 219 | private $StartupCPUShares; |
||
| 220 | |||
| 221 | private $StartupCPUWeight; |
||
| 222 | |||
| 223 | private $StartupIOWeight; |
||
| 224 | |||
| 225 | private $SyslogFacility; |
||
| 226 | |||
| 227 | private $SyslogLevel; |
||
| 228 | |||
| 229 | private $SyslogLevelPrefix; |
||
| 230 | |||
| 231 | private $SyslogPriority; |
||
| 232 | |||
| 233 | private $SystemCallErrorNumber; |
||
| 234 | |||
| 235 | private $TTYReset; |
||
| 236 | |||
| 237 | private $TTYVHangup; |
||
| 238 | |||
| 239 | private $TTYVTDisallocate; |
||
| 240 | |||
| 241 | private $TasksAccounting; |
||
| 242 | |||
| 243 | private $TasksCurrent; |
||
| 244 | |||
| 245 | private $TasksMax; |
||
| 246 | |||
| 247 | private $TimeoutUSec; |
||
| 248 | |||
| 249 | private $TimerSlackNSec; |
||
| 250 | |||
| 251 | private $TriggeredBy; |
||
| 252 | |||
| 253 | private $Type; |
||
| 254 | |||
| 255 | private $UID; |
||
| 256 | |||
| 257 | private $UMask; |
||
| 258 | |||
| 259 | private $UnitFilePreset; |
||
| 260 | |||
| 261 | private $UnitFileState; |
||
| 262 | |||
| 263 | private $UtmpMode; |
||
| 264 | |||
| 265 | private $WantedBy = []; |
||
| 266 | |||
| 267 | private $What; |
||
| 268 | |||
| 269 | private $Where; |
||
| 270 | |||
| 271 | /** |
||
| 272 | * @return array |
||
| 273 | */ |
||
| 274 | public function getAfter(): array |
||
| 278 | |||
| 279 | /** |
||
| 280 | * @param array $After |
||
| 281 | * @return Mount |
||
| 282 | */ |
||
| 283 | public function setAfter(array $After): Mount |
||
| 288 | |||
| 289 | /** |
||
| 290 | * @return mixed |
||
| 291 | */ |
||
| 292 | public function getAmbientCapabilities() |
||
| 296 | |||
| 297 | /** |
||
| 298 | * @param mixed $AmbientCapabilities |
||
| 299 | * @return Mount |
||
| 300 | */ |
||
| 301 | public function setAmbientCapabilities($AmbientCapabilities) |
||
| 306 | |||
| 307 | /** |
||
| 308 | * @return array |
||
| 309 | */ |
||
| 310 | public function getBindsTo(): array |
||
| 314 | |||
| 315 | /** |
||
| 316 | * @param array $BindsTo |
||
| 317 | * @return Mount |
||
| 318 | */ |
||
| 319 | public function setBindsTo(array $BindsTo): Mount |
||
| 324 | |||
| 325 | /** |
||
| 326 | * @return mixed |
||
| 327 | */ |
||
| 328 | public function getBlockIOAccounting() |
||
| 332 | |||
| 333 | /** |
||
| 334 | * @param mixed $BlockIOAccounting |
||
| 335 | * @return Mount |
||
| 336 | */ |
||
| 337 | public function setBlockIOAccounting($BlockIOAccounting) |
||
| 342 | |||
| 343 | /** |
||
| 344 | * @return mixed |
||
| 345 | */ |
||
| 346 | public function getBlockIOWeight() |
||
| 350 | |||
| 351 | /** |
||
| 352 | * @param mixed $BlockIOWeight |
||
| 353 | * @return Mount |
||
| 354 | */ |
||
| 355 | public function setBlockIOWeight($BlockIOWeight) |
||
| 360 | |||
| 361 | /** |
||
| 362 | * @return mixed |
||
| 363 | */ |
||
| 364 | public function getCPUAccounting() |
||
| 368 | |||
| 369 | /** |
||
| 370 | * @param mixed $CPUAccounting |
||
| 371 | * @return Mount |
||
| 372 | */ |
||
| 373 | public function setCPUAccounting($CPUAccounting) |
||
| 378 | |||
| 379 | /** |
||
| 380 | * @return mixed |
||
| 381 | */ |
||
| 382 | public function getCPUQuotaPerSecUSec() |
||
| 386 | |||
| 387 | /** |
||
| 388 | * @param mixed $CPUQuotaPerSecUSec |
||
| 389 | * @return Mount |
||
| 390 | */ |
||
| 391 | public function setCPUQuotaPerSecUSec($CPUQuotaPerSecUSec) |
||
| 396 | |||
| 397 | /** |
||
| 398 | * @return mixed |
||
| 399 | */ |
||
| 400 | public function getCPUSchedulingPolicy() |
||
| 404 | |||
| 405 | /** |
||
| 406 | * @param mixed $CPUSchedulingPolicy |
||
| 407 | * @return Mount |
||
| 408 | */ |
||
| 409 | public function setCPUSchedulingPolicy($CPUSchedulingPolicy) |
||
| 414 | |||
| 415 | /** |
||
| 416 | * @return mixed |
||
| 417 | */ |
||
| 418 | public function getCPUSchedulingPriority() |
||
| 422 | |||
| 423 | /** |
||
| 424 | * @param mixed $CPUSchedulingPriority |
||
| 425 | * @return Mount |
||
| 426 | */ |
||
| 427 | public function setCPUSchedulingPriority($CPUSchedulingPriority) |
||
| 432 | |||
| 433 | /** |
||
| 434 | * @return mixed |
||
| 435 | */ |
||
| 436 | public function getCPUSchedulingResetOnFork() |
||
| 440 | |||
| 441 | /** |
||
| 442 | * @param mixed $CPUSchedulingResetOnFork |
||
| 443 | * @return Mount |
||
| 444 | */ |
||
| 445 | public function setCPUSchedulingResetOnFork($CPUSchedulingResetOnFork) |
||
| 450 | |||
| 451 | /** |
||
| 452 | * @return mixed |
||
| 453 | */ |
||
| 454 | public function getCPUShares() |
||
| 458 | |||
| 459 | /** |
||
| 460 | * @param mixed $CPUShares |
||
| 461 | * @return Mount |
||
| 462 | */ |
||
| 463 | public function setCPUShares($CPUShares) |
||
| 468 | |||
| 469 | /** |
||
| 470 | * @return mixed |
||
| 471 | */ |
||
| 472 | public function getCPUUsageNSec() |
||
| 476 | |||
| 477 | /** |
||
| 478 | * @param mixed $CPUUsageNSec |
||
| 479 | * @return Mount |
||
| 480 | */ |
||
| 481 | public function setCPUUsageNSec($CPUUsageNSec) |
||
| 486 | |||
| 487 | /** |
||
| 488 | * @return mixed |
||
| 489 | */ |
||
| 490 | public function getCPUWeight() |
||
| 494 | |||
| 495 | /** |
||
| 496 | * @param mixed $CPUWeight |
||
| 497 | * @return Mount |
||
| 498 | */ |
||
| 499 | public function setCPUWeight($CPUWeight) |
||
| 504 | |||
| 505 | /** |
||
| 506 | * @return mixed |
||
| 507 | */ |
||
| 508 | public function getCapabilityBoundingSet() |
||
| 512 | |||
| 513 | /** |
||
| 514 | * @param mixed $CapabilityBoundingSet |
||
| 515 | * @return Mount |
||
| 516 | */ |
||
| 517 | public function setCapabilityBoundingSet($CapabilityBoundingSet) |
||
| 522 | |||
| 523 | /** |
||
| 524 | * @return array |
||
| 525 | */ |
||
| 526 | public function getConflicts(): array |
||
| 530 | |||
| 531 | /** |
||
| 532 | * @param array $Conflicts |
||
| 533 | * @return Mount |
||
| 534 | */ |
||
| 535 | public function setConflicts(array $Conflicts): Mount |
||
| 540 | |||
| 541 | /** |
||
| 542 | * @return mixed |
||
| 543 | */ |
||
| 544 | public function getControlGroup() |
||
| 548 | |||
| 549 | /** |
||
| 550 | * @param mixed $ControlGroup |
||
| 551 | * @return Mount |
||
| 552 | */ |
||
| 553 | public function setControlGroup($ControlGroup) |
||
| 558 | |||
| 559 | /** |
||
| 560 | * @return mixed |
||
| 561 | */ |
||
| 562 | public function getControlPID() |
||
| 566 | |||
| 567 | /** |
||
| 568 | * @param mixed $ControlPID |
||
| 569 | * @return Mount |
||
| 570 | */ |
||
| 571 | public function setControlPID($ControlPID) |
||
| 576 | |||
| 577 | /** |
||
| 578 | * @return mixed |
||
| 579 | */ |
||
| 580 | public function getDelegate() |
||
| 584 | |||
| 585 | /** |
||
| 586 | * @param mixed $Delegate |
||
| 587 | * @return Mount |
||
| 588 | */ |
||
| 589 | public function setDelegate($Delegate) |
||
| 594 | |||
| 595 | /** |
||
| 596 | * @return mixed |
||
| 597 | */ |
||
| 598 | public function getDevicePolicy() |
||
| 602 | |||
| 603 | /** |
||
| 604 | * @param mixed $DevicePolicy |
||
| 605 | * @return Mount |
||
| 606 | */ |
||
| 607 | public function setDevicePolicy($DevicePolicy) |
||
| 612 | |||
| 613 | /** |
||
| 614 | * @return mixed |
||
| 615 | */ |
||
| 616 | public function getDirectoryMode() |
||
| 620 | |||
| 621 | /** |
||
| 622 | * @param mixed $DirectoryMode |
||
| 623 | * @return Mount |
||
| 624 | */ |
||
| 625 | public function setDirectoryMode($DirectoryMode) |
||
| 630 | |||
| 631 | /** |
||
| 632 | * @return array |
||
| 633 | */ |
||
| 634 | public function getDocumentation(): array |
||
| 638 | |||
| 639 | /** |
||
| 640 | * @param array $Documentation |
||
| 641 | * @return Mount |
||
| 642 | */ |
||
| 643 | public function setDocumentation(array $Documentation): Mount |
||
| 648 | |||
| 649 | /** |
||
| 650 | * @return mixed |
||
| 651 | */ |
||
| 652 | public function getDynamicUser() |
||
| 656 | |||
| 657 | /** |
||
| 658 | * @param mixed $DynamicUser |
||
| 659 | * @return Mount |
||
| 660 | */ |
||
| 661 | public function setDynamicUser($DynamicUser) |
||
| 666 | |||
| 667 | /** |
||
| 668 | * @return mixed |
||
| 669 | */ |
||
| 670 | public function getForceUnmount() |
||
| 674 | |||
| 675 | /** |
||
| 676 | * @param mixed $ForceUnmount |
||
| 677 | * @return Mount |
||
| 678 | */ |
||
| 679 | public function setForceUnmount($ForceUnmount) |
||
| 684 | |||
| 685 | /** |
||
| 686 | * @return mixed |
||
| 687 | */ |
||
| 688 | public function getFragmentPath() |
||
| 692 | |||
| 693 | /** |
||
| 694 | * @param mixed $FragmentPath |
||
| 695 | * @return Mount |
||
| 696 | */ |
||
| 697 | public function setFragmentPath($FragmentPath) |
||
| 702 | |||
| 703 | /** |
||
| 704 | * @return mixed |
||
| 705 | */ |
||
| 706 | public function getGID() |
||
| 710 | |||
| 711 | /** |
||
| 712 | * @param mixed $GID |
||
| 713 | * @return Mount |
||
| 714 | */ |
||
| 715 | public function setGID($GID) |
||
| 720 | |||
| 721 | /** |
||
| 722 | * @return mixed |
||
| 723 | */ |
||
| 724 | public function getIOAccounting() |
||
| 728 | |||
| 729 | /** |
||
| 730 | * @param mixed $IOAccounting |
||
| 731 | * @return Mount |
||
| 732 | */ |
||
| 733 | public function setIOAccounting($IOAccounting) |
||
| 738 | |||
| 739 | /** |
||
| 740 | * @return mixed |
||
| 741 | */ |
||
| 742 | public function getIOScheduling() |
||
| 746 | |||
| 747 | /** |
||
| 748 | * @param mixed $IOScheduling |
||
| 749 | * @return Mount |
||
| 750 | */ |
||
| 751 | public function setIOScheduling($IOScheduling) |
||
| 756 | |||
| 757 | /** |
||
| 758 | * @return mixed |
||
| 759 | */ |
||
| 760 | public function getIOWeight() |
||
| 764 | |||
| 765 | /** |
||
| 766 | * @param mixed $IOWeight |
||
| 767 | * @return Mount |
||
| 768 | */ |
||
| 769 | public function setIOWeight($IOWeight) |
||
| 774 | |||
| 775 | /** |
||
| 776 | * @return mixed |
||
| 777 | */ |
||
| 778 | public function getIgnoreSIGPIPE() |
||
| 782 | |||
| 783 | /** |
||
| 784 | * @param mixed $IgnoreSIGPIPE |
||
| 785 | * @return Mount |
||
| 786 | */ |
||
| 787 | public function setIgnoreSIGPIPE($IgnoreSIGPIPE) |
||
| 792 | |||
| 793 | /** |
||
| 794 | * @return mixed |
||
| 795 | */ |
||
| 796 | public function getKillMode() |
||
| 800 | |||
| 801 | /** |
||
| 802 | * @param mixed $KillMode |
||
| 803 | * @return Mount |
||
| 804 | */ |
||
| 805 | public function setKillMode($KillMode) |
||
| 810 | |||
| 811 | /** |
||
| 812 | * @return mixed |
||
| 813 | */ |
||
| 814 | public function getKillSignal() |
||
| 818 | |||
| 819 | /** |
||
| 820 | * @param mixed $KillSignal |
||
| 821 | * @return Mount |
||
| 822 | */ |
||
| 823 | public function setKillSignal($KillSignal) |
||
| 828 | |||
| 829 | /** |
||
| 830 | * @return mixed |
||
| 831 | */ |
||
| 832 | public function getLazyUnmount() |
||
| 836 | |||
| 837 | /** |
||
| 838 | * @param mixed $LazyUnmount |
||
| 839 | * @return Mount |
||
| 840 | */ |
||
| 841 | public function setLazyUnmount($LazyUnmount) |
||
| 846 | |||
| 847 | /** |
||
| 848 | * @return mixed |
||
| 849 | */ |
||
| 850 | public function getLimitAS() |
||
| 854 | |||
| 855 | /** |
||
| 856 | * @param mixed $LimitAS |
||
| 857 | * @return Mount |
||
| 858 | */ |
||
| 859 | public function setLimitAS($LimitAS) |
||
| 864 | |||
| 865 | /** |
||
| 866 | * @return mixed |
||
| 867 | */ |
||
| 868 | public function getLimitASSoft() |
||
| 872 | |||
| 873 | /** |
||
| 874 | * @param mixed $LimitASSoft |
||
| 875 | * @return Mount |
||
| 876 | */ |
||
| 877 | public function setLimitASSoft($LimitASSoft) |
||
| 882 | |||
| 883 | /** |
||
| 884 | * @return mixed |
||
| 885 | */ |
||
| 886 | public function getLimitCORE() |
||
| 890 | |||
| 891 | /** |
||
| 892 | * @param mixed $LimitCORE |
||
| 893 | * @return Mount |
||
| 894 | */ |
||
| 895 | public function setLimitCORE($LimitCORE) |
||
| 900 | |||
| 901 | /** |
||
| 902 | * @return mixed |
||
| 903 | */ |
||
| 904 | public function getLimitCORESoft() |
||
| 908 | |||
| 909 | /** |
||
| 910 | * @param mixed $LimitCORESoft |
||
| 911 | * @return Mount |
||
| 912 | */ |
||
| 913 | public function setLimitCORESoft($LimitCORESoft) |
||
| 918 | |||
| 919 | /** |
||
| 920 | * @return mixed |
||
| 921 | */ |
||
| 922 | public function getLimitCPU() |
||
| 926 | |||
| 927 | /** |
||
| 928 | * @param mixed $LimitCPU |
||
| 929 | * @return Mount |
||
| 930 | */ |
||
| 931 | public function setLimitCPU($LimitCPU) |
||
| 936 | |||
| 937 | /** |
||
| 938 | * @return mixed |
||
| 939 | */ |
||
| 940 | public function getLimitCPUSoft() |
||
| 944 | |||
| 945 | /** |
||
| 946 | * @param mixed $LimitCPUSoft |
||
| 947 | * @return Mount |
||
| 948 | */ |
||
| 949 | public function setLimitCPUSoft($LimitCPUSoft) |
||
| 954 | |||
| 955 | /** |
||
| 956 | * @return mixed |
||
| 957 | */ |
||
| 958 | public function getLimitDATA() |
||
| 962 | |||
| 963 | /** |
||
| 964 | * @param mixed $LimitDATA |
||
| 965 | * @return Mount |
||
| 966 | */ |
||
| 967 | public function setLimitDATA($LimitDATA) |
||
| 972 | |||
| 973 | /** |
||
| 974 | * @return mixed |
||
| 975 | */ |
||
| 976 | public function getLimitDATASoft() |
||
| 980 | |||
| 981 | /** |
||
| 982 | * @param mixed $LimitDATASoft |
||
| 983 | * @return Mount |
||
| 984 | */ |
||
| 985 | public function setLimitDATASoft($LimitDATASoft) |
||
| 990 | |||
| 991 | /** |
||
| 992 | * @return mixed |
||
| 993 | */ |
||
| 994 | public function getLimitFSIZE() |
||
| 998 | |||
| 999 | /** |
||
| 1000 | * @param mixed $LimitFSIZE |
||
| 1001 | * @return Mount |
||
| 1002 | */ |
||
| 1003 | public function setLimitFSIZE($LimitFSIZE) |
||
| 1008 | |||
| 1009 | /** |
||
| 1010 | * @return mixed |
||
| 1011 | */ |
||
| 1012 | public function getLimitFSIZESoft() |
||
| 1016 | |||
| 1017 | /** |
||
| 1018 | * @param mixed $LimitFSIZESoft |
||
| 1019 | * @return Mount |
||
| 1020 | */ |
||
| 1021 | public function setLimitFSIZESoft($LimitFSIZESoft) |
||
| 1026 | |||
| 1027 | /** |
||
| 1028 | * @return mixed |
||
| 1029 | */ |
||
| 1030 | public function getLimitLOCKS() |
||
| 1034 | |||
| 1035 | /** |
||
| 1036 | * @param mixed $LimitLOCKS |
||
| 1037 | * @return Mount |
||
| 1038 | */ |
||
| 1039 | public function setLimitLOCKS($LimitLOCKS) |
||
| 1044 | |||
| 1045 | /** |
||
| 1046 | * @return mixed |
||
| 1047 | */ |
||
| 1048 | public function getLimitLOCKSSoft() |
||
| 1052 | |||
| 1053 | /** |
||
| 1054 | * @param mixed $LimitLOCKSSoft |
||
| 1055 | * @return Mount |
||
| 1056 | */ |
||
| 1057 | public function setLimitLOCKSSoft($LimitLOCKSSoft) |
||
| 1062 | |||
| 1063 | /** |
||
| 1064 | * @return mixed |
||
| 1065 | */ |
||
| 1066 | public function getLimitMEMLOCK() |
||
| 1070 | |||
| 1071 | /** |
||
| 1072 | * @param mixed $LimitMEMLOCK |
||
| 1073 | * @return Mount |
||
| 1074 | */ |
||
| 1075 | public function setLimitMEMLOCK($LimitMEMLOCK) |
||
| 1080 | |||
| 1081 | /** |
||
| 1082 | * @return mixed |
||
| 1083 | */ |
||
| 1084 | public function getLimitMEMLOCKSoft() |
||
| 1088 | |||
| 1089 | /** |
||
| 1090 | * @param mixed $LimitMEMLOCKSoft |
||
| 1091 | * @return Mount |
||
| 1092 | */ |
||
| 1093 | public function setLimitMEMLOCKSoft($LimitMEMLOCKSoft) |
||
| 1098 | |||
| 1099 | /** |
||
| 1100 | * @return mixed |
||
| 1101 | */ |
||
| 1102 | public function getLimitMSGQUEUE() |
||
| 1106 | |||
| 1107 | /** |
||
| 1108 | * @param mixed $LimitMSGQUEUE |
||
| 1109 | * @return Mount |
||
| 1110 | */ |
||
| 1111 | public function setLimitMSGQUEUE($LimitMSGQUEUE) |
||
| 1116 | |||
| 1117 | /** |
||
| 1118 | * @return mixed |
||
| 1119 | */ |
||
| 1120 | public function getLimitMSGQUEUESoft() |
||
| 1124 | |||
| 1125 | /** |
||
| 1126 | * @param mixed $LimitMSGQUEUESoft |
||
| 1127 | * @return Mount |
||
| 1128 | */ |
||
| 1129 | public function setLimitMSGQUEUESoft($LimitMSGQUEUESoft) |
||
| 1134 | |||
| 1135 | /** |
||
| 1136 | * @return mixed |
||
| 1137 | */ |
||
| 1138 | public function getLimitNICE() |
||
| 1142 | |||
| 1143 | /** |
||
| 1144 | * @param mixed $LimitNICE |
||
| 1145 | * @return Mount |
||
| 1146 | */ |
||
| 1147 | public function setLimitNICE($LimitNICE) |
||
| 1152 | |||
| 1153 | /** |
||
| 1154 | * @return mixed |
||
| 1155 | */ |
||
| 1156 | public function getLimitNICESoft() |
||
| 1160 | |||
| 1161 | /** |
||
| 1162 | * @param mixed $LimitNICESoft |
||
| 1163 | * @return Mount |
||
| 1164 | */ |
||
| 1165 | public function setLimitNICESoft($LimitNICESoft) |
||
| 1170 | |||
| 1171 | /** |
||
| 1172 | * @return mixed |
||
| 1173 | */ |
||
| 1174 | public function getLimitNOFILE() |
||
| 1178 | |||
| 1179 | /** |
||
| 1180 | * @param mixed $LimitNOFILE |
||
| 1181 | * @return Mount |
||
| 1182 | */ |
||
| 1183 | public function setLimitNOFILE($LimitNOFILE) |
||
| 1188 | |||
| 1189 | /** |
||
| 1190 | * @return mixed |
||
| 1191 | */ |
||
| 1192 | public function getLimitNOFILESoft() |
||
| 1196 | |||
| 1197 | /** |
||
| 1198 | * @param mixed $LimitNOFILESoft |
||
| 1199 | * @return Mount |
||
| 1200 | */ |
||
| 1201 | public function setLimitNOFILESoft($LimitNOFILESoft) |
||
| 1206 | |||
| 1207 | /** |
||
| 1208 | * @return mixed |
||
| 1209 | */ |
||
| 1210 | public function getLimitNPROC() |
||
| 1214 | |||
| 1215 | /** |
||
| 1216 | * @param mixed $LimitNPROC |
||
| 1217 | * @return Mount |
||
| 1218 | */ |
||
| 1219 | public function setLimitNPROC($LimitNPROC) |
||
| 1224 | |||
| 1225 | /** |
||
| 1226 | * @return mixed |
||
| 1227 | */ |
||
| 1228 | public function getLimitNPROCSoft() |
||
| 1232 | |||
| 1233 | /** |
||
| 1234 | * @param mixed $LimitNPROCSoft |
||
| 1235 | * @return Mount |
||
| 1236 | */ |
||
| 1237 | public function setLimitNPROCSoft($LimitNPROCSoft) |
||
| 1242 | |||
| 1243 | /** |
||
| 1244 | * @return mixed |
||
| 1245 | */ |
||
| 1246 | public function getLimitRSS() |
||
| 1250 | |||
| 1251 | /** |
||
| 1252 | * @param mixed $LimitRSS |
||
| 1253 | * @return Mount |
||
| 1254 | */ |
||
| 1255 | public function setLimitRSS($LimitRSS) |
||
| 1260 | |||
| 1261 | /** |
||
| 1262 | * @return mixed |
||
| 1263 | */ |
||
| 1264 | public function getLimitRSSSoft() |
||
| 1268 | |||
| 1269 | /** |
||
| 1270 | * @param mixed $LimitRSSSoft |
||
| 1271 | * @return Mount |
||
| 1272 | */ |
||
| 1273 | public function setLimitRSSSoft($LimitRSSSoft) |
||
| 1278 | |||
| 1279 | /** |
||
| 1280 | * @return mixed |
||
| 1281 | */ |
||
| 1282 | public function getLimitRTPRIO() |
||
| 1286 | |||
| 1287 | /** |
||
| 1288 | * @param mixed $LimitRTPRIO |
||
| 1289 | * @return Mount |
||
| 1290 | */ |
||
| 1291 | public function setLimitRTPRIO($LimitRTPRIO) |
||
| 1296 | |||
| 1297 | /** |
||
| 1298 | * @return mixed |
||
| 1299 | */ |
||
| 1300 | public function getLimitRTPRIOSoft() |
||
| 1304 | |||
| 1305 | /** |
||
| 1306 | * @param mixed $LimitRTPRIOSoft |
||
| 1307 | * @return Mount |
||
| 1308 | */ |
||
| 1309 | public function setLimitRTPRIOSoft($LimitRTPRIOSoft) |
||
| 1314 | |||
| 1315 | /** |
||
| 1316 | * @return mixed |
||
| 1317 | */ |
||
| 1318 | public function getLimitRTTIME() |
||
| 1322 | |||
| 1323 | /** |
||
| 1324 | * @param mixed $LimitRTTIME |
||
| 1325 | * @return Mount |
||
| 1326 | */ |
||
| 1327 | public function setLimitRTTIME($LimitRTTIME) |
||
| 1332 | |||
| 1333 | /** |
||
| 1334 | * @return mixed |
||
| 1335 | */ |
||
| 1336 | public function getLimitRTTIMESoft() |
||
| 1340 | |||
| 1341 | /** |
||
| 1342 | * @param mixed $LimitRTTIMESoft |
||
| 1343 | * @return Mount |
||
| 1344 | */ |
||
| 1345 | public function setLimitRTTIMESoft($LimitRTTIMESoft) |
||
| 1350 | |||
| 1351 | /** |
||
| 1352 | * @return mixed |
||
| 1353 | */ |
||
| 1354 | public function getLimitSIGPENDING() |
||
| 1358 | |||
| 1359 | /** |
||
| 1360 | * @param mixed $LimitSIGPENDING |
||
| 1361 | * @return Mount |
||
| 1362 | */ |
||
| 1363 | public function setLimitSIGPENDING($LimitSIGPENDING) |
||
| 1368 | |||
| 1369 | /** |
||
| 1370 | * @return mixed |
||
| 1371 | */ |
||
| 1372 | public function getLimitSIGPENDINGSoft() |
||
| 1376 | |||
| 1377 | /** |
||
| 1378 | * @param mixed $LimitSIGPENDINGSoft |
||
| 1379 | * @return Mount |
||
| 1380 | */ |
||
| 1381 | public function setLimitSIGPENDINGSoft($LimitSIGPENDINGSoft) |
||
| 1386 | |||
| 1387 | /** |
||
| 1388 | * @return mixed |
||
| 1389 | */ |
||
| 1390 | public function getLimitSTACK() |
||
| 1394 | |||
| 1395 | /** |
||
| 1396 | * @param mixed $LimitSTACK |
||
| 1397 | * @return Mount |
||
| 1398 | */ |
||
| 1399 | public function setLimitSTACK($LimitSTACK) |
||
| 1404 | |||
| 1405 | /** |
||
| 1406 | * @return mixed |
||
| 1407 | */ |
||
| 1408 | public function getLimitSTACKSoft() |
||
| 1412 | |||
| 1413 | /** |
||
| 1414 | * @param mixed $LimitSTACKSoft |
||
| 1415 | * @return Mount |
||
| 1416 | */ |
||
| 1417 | public function setLimitSTACKSoft($LimitSTACKSoft) |
||
| 1422 | |||
| 1423 | /** |
||
| 1424 | * @return mixed |
||
| 1425 | */ |
||
| 1426 | public function getMemoryAccounting() |
||
| 1430 | |||
| 1431 | /** |
||
| 1432 | * @param mixed $MemoryAccounting |
||
| 1433 | * @return Mount |
||
| 1434 | */ |
||
| 1435 | public function setMemoryAccounting($MemoryAccounting) |
||
| 1440 | |||
| 1441 | /** |
||
| 1442 | * @return mixed |
||
| 1443 | */ |
||
| 1444 | public function getMemoryCurrent() |
||
| 1448 | |||
| 1449 | /** |
||
| 1450 | * @param mixed $MemoryCurrent |
||
| 1451 | * @return Mount |
||
| 1452 | */ |
||
| 1453 | public function setMemoryCurrent($MemoryCurrent) |
||
| 1458 | |||
| 1459 | /** |
||
| 1460 | * @return mixed |
||
| 1461 | */ |
||
| 1462 | public function getMemoryDenyWriteExecute() |
||
| 1466 | |||
| 1467 | /** |
||
| 1468 | * @param mixed $MemoryDenyWriteExecute |
||
| 1469 | * @return Mount |
||
| 1470 | */ |
||
| 1471 | public function setMemoryDenyWriteExecute($MemoryDenyWriteExecute) |
||
| 1476 | |||
| 1477 | /** |
||
| 1478 | * @return mixed |
||
| 1479 | */ |
||
| 1480 | public function getMemoryHigh() |
||
| 1484 | |||
| 1485 | /** |
||
| 1486 | * @param mixed $MemoryHigh |
||
| 1487 | * @return Mount |
||
| 1488 | */ |
||
| 1489 | public function setMemoryHigh($MemoryHigh) |
||
| 1494 | |||
| 1495 | /** |
||
| 1496 | * @return mixed |
||
| 1497 | */ |
||
| 1498 | public function getMemoryLimit() |
||
| 1502 | |||
| 1503 | /** |
||
| 1504 | * @param mixed $MemoryLimit |
||
| 1505 | * @return Mount |
||
| 1506 | */ |
||
| 1507 | public function setMemoryLimit($MemoryLimit) |
||
| 1512 | |||
| 1513 | /** |
||
| 1514 | * @return mixed |
||
| 1515 | */ |
||
| 1516 | public function getMemoryLow() |
||
| 1520 | |||
| 1521 | /** |
||
| 1522 | * @param mixed $MemoryLow |
||
| 1523 | * @return Mount |
||
| 1524 | */ |
||
| 1525 | public function setMemoryLow($MemoryLow) |
||
| 1530 | |||
| 1531 | /** |
||
| 1532 | * @return mixed |
||
| 1533 | */ |
||
| 1534 | public function getMemoryMax() |
||
| 1538 | |||
| 1539 | /** |
||
| 1540 | * @param mixed $MemoryMax |
||
| 1541 | * @return Mount |
||
| 1542 | */ |
||
| 1543 | public function setMemoryMax($MemoryMax) |
||
| 1548 | |||
| 1549 | /** |
||
| 1550 | * @return mixed |
||
| 1551 | */ |
||
| 1552 | public function getMemorySwapMax() |
||
| 1556 | |||
| 1557 | /** |
||
| 1558 | * @param mixed $MemorySwapMax |
||
| 1559 | * @return Mount |
||
| 1560 | */ |
||
| 1561 | public function setMemorySwapMax($MemorySwapMax) |
||
| 1566 | |||
| 1567 | /** |
||
| 1568 | * @return mixed |
||
| 1569 | */ |
||
| 1570 | public function getMountFlags() |
||
| 1574 | |||
| 1575 | /** |
||
| 1576 | * @param mixed $MountFlags |
||
| 1577 | * @return Mount |
||
| 1578 | */ |
||
| 1579 | public function setMountFlags($MountFlags) |
||
| 1584 | |||
| 1585 | /** |
||
| 1586 | * @return mixed |
||
| 1587 | */ |
||
| 1588 | public function getNice() |
||
| 1592 | |||
| 1593 | /** |
||
| 1594 | * @param mixed $Nice |
||
| 1595 | * @return Mount |
||
| 1596 | */ |
||
| 1597 | public function setNice($Nice) |
||
| 1602 | |||
| 1603 | /** |
||
| 1604 | * @return mixed |
||
| 1605 | */ |
||
| 1606 | public function getNoNewPrivileges() |
||
| 1610 | |||
| 1611 | /** |
||
| 1612 | * @param mixed $NoNewPrivileges |
||
| 1613 | * @return Mount |
||
| 1614 | */ |
||
| 1615 | public function setNoNewPrivileges($NoNewPrivileges) |
||
| 1620 | |||
| 1621 | /** |
||
| 1622 | * @return mixed |
||
| 1623 | */ |
||
| 1624 | public function getNonBlocking() |
||
| 1628 | |||
| 1629 | /** |
||
| 1630 | * @param mixed $NonBlocking |
||
| 1631 | * @return Mount |
||
| 1632 | */ |
||
| 1633 | public function setNonBlocking($NonBlocking) |
||
| 1638 | |||
| 1639 | /** |
||
| 1640 | * @return mixed |
||
| 1641 | */ |
||
| 1642 | public function getOOMScoreAdjust() |
||
| 1646 | |||
| 1647 | /** |
||
| 1648 | * @param mixed $OOMScoreAdjust |
||
| 1649 | * @return Mount |
||
| 1650 | */ |
||
| 1651 | public function setOOMScoreAdjust($OOMScoreAdjust) |
||
| 1656 | |||
| 1657 | /** |
||
| 1658 | * @return mixed |
||
| 1659 | */ |
||
| 1660 | public function getOptions() |
||
| 1664 | |||
| 1665 | /** |
||
| 1666 | * @param mixed $Options |
||
| 1667 | * @return Mount |
||
| 1668 | */ |
||
| 1669 | public function setOptions($Options) |
||
| 1674 | |||
| 1675 | /** |
||
| 1676 | * @return mixed |
||
| 1677 | */ |
||
| 1678 | public function getPrivateDevices() |
||
| 1682 | |||
| 1683 | /** |
||
| 1684 | * @param mixed $PrivateDevices |
||
| 1685 | * @return Mount |
||
| 1686 | */ |
||
| 1687 | public function setPrivateDevices($PrivateDevices) |
||
| 1692 | |||
| 1693 | /** |
||
| 1694 | * @return mixed |
||
| 1695 | */ |
||
| 1696 | public function getPrivateNetwork() |
||
| 1700 | |||
| 1701 | /** |
||
| 1702 | * @param mixed $PrivateNetwork |
||
| 1703 | * @return Mount |
||
| 1704 | */ |
||
| 1705 | public function setPrivateNetwork($PrivateNetwork) |
||
| 1710 | |||
| 1711 | /** |
||
| 1712 | * @return mixed |
||
| 1713 | */ |
||
| 1714 | public function getPrivateTmp() |
||
| 1718 | |||
| 1719 | /** |
||
| 1720 | * @param mixed $PrivateTmp |
||
| 1721 | * @return Mount |
||
| 1722 | */ |
||
| 1723 | public function setPrivateTmp($PrivateTmp) |
||
| 1728 | |||
| 1729 | /** |
||
| 1730 | * @return mixed |
||
| 1731 | */ |
||
| 1732 | public function getPrivateUsers() |
||
| 1736 | |||
| 1737 | /** |
||
| 1738 | * @param mixed $PrivateUsers |
||
| 1739 | * @return Mount |
||
| 1740 | */ |
||
| 1741 | public function setPrivateUsers($PrivateUsers) |
||
| 1746 | |||
| 1747 | /** |
||
| 1748 | * @return mixed |
||
| 1749 | */ |
||
| 1750 | public function getProtectControlGroups() |
||
| 1754 | |||
| 1755 | /** |
||
| 1756 | * @param mixed $ProtectControlGroups |
||
| 1757 | * @return Mount |
||
| 1758 | */ |
||
| 1759 | public function setProtectControlGroups($ProtectControlGroups) |
||
| 1764 | |||
| 1765 | /** |
||
| 1766 | * @return mixed |
||
| 1767 | */ |
||
| 1768 | public function getProtectHome() |
||
| 1772 | |||
| 1773 | /** |
||
| 1774 | * @param mixed $ProtectHome |
||
| 1775 | * @return Mount |
||
| 1776 | */ |
||
| 1777 | public function setProtectHome($ProtectHome) |
||
| 1782 | |||
| 1783 | /** |
||
| 1784 | * @return mixed |
||
| 1785 | */ |
||
| 1786 | public function getProtectKernelModules() |
||
| 1790 | |||
| 1791 | /** |
||
| 1792 | * @param mixed $ProtectKernelModules |
||
| 1793 | * @return Mount |
||
| 1794 | */ |
||
| 1795 | public function setProtectKernelModules($ProtectKernelModules) |
||
| 1800 | |||
| 1801 | /** |
||
| 1802 | * @return mixed |
||
| 1803 | */ |
||
| 1804 | public function getProtectKernelTunables() |
||
| 1808 | |||
| 1809 | /** |
||
| 1810 | * @param mixed $ProtectKernelTunables |
||
| 1811 | * @return Mount |
||
| 1812 | */ |
||
| 1813 | public function setProtectKernelTunables($ProtectKernelTunables) |
||
| 1818 | |||
| 1819 | /** |
||
| 1820 | * @return mixed |
||
| 1821 | */ |
||
| 1822 | public function getProtectSystem() |
||
| 1826 | |||
| 1827 | /** |
||
| 1828 | * @param mixed $ProtectSystem |
||
| 1829 | * @return Mount |
||
| 1830 | */ |
||
| 1831 | public function setProtectSystem($ProtectSystem) |
||
| 1836 | |||
| 1837 | /** |
||
| 1838 | * @return mixed |
||
| 1839 | */ |
||
| 1840 | public function getRemoveIPC() |
||
| 1844 | |||
| 1845 | /** |
||
| 1846 | * @param mixed $RemoveIPC |
||
| 1847 | * @return Mount |
||
| 1848 | */ |
||
| 1849 | public function setRemoveIPC($RemoveIPC) |
||
| 1854 | |||
| 1855 | /** |
||
| 1856 | * @return array |
||
| 1857 | */ |
||
| 1858 | public function getRequiredBy(): array |
||
| 1862 | |||
| 1863 | /** |
||
| 1864 | * @param array $RequiredBy |
||
| 1865 | * @return Mount |
||
| 1866 | */ |
||
| 1867 | public function setRequiredBy(array $RequiredBy): Mount |
||
| 1872 | |||
| 1873 | /** |
||
| 1874 | * @return array |
||
| 1875 | */ |
||
| 1876 | public function getRequires(): array |
||
| 1880 | |||
| 1881 | /** |
||
| 1882 | * @param array $Requires |
||
| 1883 | * @return Mount |
||
| 1884 | */ |
||
| 1885 | public function setRequires(array $Requires): Mount |
||
| 1890 | |||
| 1891 | /** |
||
| 1892 | * @return array |
||
| 1893 | */ |
||
| 1894 | public function getRequiresMountsFor(): array |
||
| 1898 | |||
| 1899 | /** |
||
| 1900 | * @param array $RequiresMountsFor |
||
| 1901 | * @return Mount |
||
| 1902 | */ |
||
| 1903 | public function setRequiresMountsFor(array $RequiresMountsFor): Mount |
||
| 1908 | |||
| 1909 | /** |
||
| 1910 | * @return mixed |
||
| 1911 | */ |
||
| 1912 | public function getRestrictNamespace() |
||
| 1916 | |||
| 1917 | /** |
||
| 1918 | * @param mixed $RestrictNamespace |
||
| 1919 | * @return Mount |
||
| 1920 | */ |
||
| 1921 | public function setRestrictNamespace($RestrictNamespace) |
||
| 1926 | |||
| 1927 | /** |
||
| 1928 | * @return mixed |
||
| 1929 | */ |
||
| 1930 | public function getRestrictRealtime() |
||
| 1934 | |||
| 1935 | /** |
||
| 1936 | * @param mixed $RestrictRealtime |
||
| 1937 | * @return Mount |
||
| 1938 | */ |
||
| 1939 | public function setRestrictRealtime($RestrictRealtime) |
||
| 1944 | |||
| 1945 | /** |
||
| 1946 | * @return mixed |
||
| 1947 | */ |
||
| 1948 | public function getResult() |
||
| 1952 | |||
| 1953 | /** |
||
| 1954 | * @param mixed $Result |
||
| 1955 | * @return Mount |
||
| 1956 | */ |
||
| 1957 | public function setResult($Result) |
||
| 1962 | |||
| 1963 | /** |
||
| 1964 | * @return mixed |
||
| 1965 | */ |
||
| 1966 | public function getRuntimeDirectoryMode() |
||
| 1970 | |||
| 1971 | /** |
||
| 1972 | * @param mixed $RuntimeDirectoryMode |
||
| 1973 | * @return Mount |
||
| 1974 | */ |
||
| 1975 | public function setRuntimeDirectoryMode($RuntimeDirectoryMode) |
||
| 1980 | |||
| 1981 | /** |
||
| 1982 | * @return mixed |
||
| 1983 | */ |
||
| 1984 | public function getSameProcessGroup() |
||
| 1988 | |||
| 1989 | /** |
||
| 1990 | * @param mixed $SameProcessGroup |
||
| 1991 | * @return Mount |
||
| 1992 | */ |
||
| 1993 | public function setSameProcessGroup($SameProcessGroup) |
||
| 1998 | |||
| 1999 | /** |
||
| 2000 | * @return mixed |
||
| 2001 | */ |
||
| 2002 | public function getSecureBits() |
||
| 2006 | |||
| 2007 | /** |
||
| 2008 | * @param mixed $SecureBits |
||
| 2009 | * @return Mount |
||
| 2010 | */ |
||
| 2011 | public function setSecureBits($SecureBits) |
||
| 2016 | |||
| 2017 | /** |
||
| 2018 | * @return mixed |
||
| 2019 | */ |
||
| 2020 | public function getSendSIGHUP() |
||
| 2024 | |||
| 2025 | /** |
||
| 2026 | * @param mixed $SendSIGHUP |
||
| 2027 | * @return Mount |
||
| 2028 | */ |
||
| 2029 | public function setSendSIGHUP($SendSIGHUP) |
||
| 2034 | |||
| 2035 | /** |
||
| 2036 | * @return mixed |
||
| 2037 | */ |
||
| 2038 | public function getSendSIGKILL() |
||
| 2042 | |||
| 2043 | /** |
||
| 2044 | * @param mixed $SendSIGKILL |
||
| 2045 | * @return Mount |
||
| 2046 | */ |
||
| 2047 | public function setSendSIGKILL($SendSIGKILL) |
||
| 2052 | |||
| 2053 | /** |
||
| 2054 | * @return mixed |
||
| 2055 | */ |
||
| 2056 | public function getSlice() |
||
| 2060 | |||
| 2061 | /** |
||
| 2062 | * @param mixed $Slice |
||
| 2063 | * @return Mount |
||
| 2064 | */ |
||
| 2065 | public function setSlice($Slice) |
||
| 2070 | |||
| 2071 | /** |
||
| 2072 | * @return mixed |
||
| 2073 | */ |
||
| 2074 | public function getSloppyOptions() |
||
| 2078 | |||
| 2079 | /** |
||
| 2080 | * @param mixed $SloppyOptions |
||
| 2081 | * @return Mount |
||
| 2082 | */ |
||
| 2083 | public function setSloppyOptions($SloppyOptions) |
||
| 2088 | |||
| 2089 | /** |
||
| 2090 | * @return mixed |
||
| 2091 | */ |
||
| 2092 | public function getSourcePath() |
||
| 2096 | |||
| 2097 | /** |
||
| 2098 | * @param mixed $SourcePath |
||
| 2099 | * @return Mount |
||
| 2100 | */ |
||
| 2101 | public function setSourcePath($SourcePath) |
||
| 2106 | |||
| 2107 | /** |
||
| 2108 | * @return mixed |
||
| 2109 | */ |
||
| 2110 | public function getStandardError() |
||
| 2114 | |||
| 2115 | /** |
||
| 2116 | * @param mixed $StandardError |
||
| 2117 | * @return Mount |
||
| 2118 | */ |
||
| 2119 | public function setStandardError($StandardError) |
||
| 2124 | |||
| 2125 | /** |
||
| 2126 | * @return mixed |
||
| 2127 | */ |
||
| 2128 | public function getStandardInput() |
||
| 2132 | |||
| 2133 | /** |
||
| 2134 | * @param mixed $StandardInput |
||
| 2135 | * @return Mount |
||
| 2136 | */ |
||
| 2137 | public function setStandardInput($StandardInput) |
||
| 2142 | |||
| 2143 | /** |
||
| 2144 | * @return mixed |
||
| 2145 | */ |
||
| 2146 | public function getStandardOutput() |
||
| 2150 | |||
| 2151 | /** |
||
| 2152 | * @param mixed $StandardOutput |
||
| 2153 | * @return Mount |
||
| 2154 | */ |
||
| 2155 | public function setStandardOutput($StandardOutput) |
||
| 2160 | |||
| 2161 | /** |
||
| 2162 | * @return mixed |
||
| 2163 | */ |
||
| 2164 | public function getStartupBlockIOWeight() |
||
| 2168 | |||
| 2169 | /** |
||
| 2170 | * @param mixed $StartupBlockIOWeight |
||
| 2171 | * @return Mount |
||
| 2172 | */ |
||
| 2173 | public function setStartupBlockIOWeight($StartupBlockIOWeight) |
||
| 2178 | |||
| 2179 | /** |
||
| 2180 | * @return mixed |
||
| 2181 | */ |
||
| 2182 | public function getStartupCPUShares() |
||
| 2186 | |||
| 2187 | /** |
||
| 2188 | * @param mixed $StartupCPUShares |
||
| 2189 | * @return Mount |
||
| 2190 | */ |
||
| 2191 | public function setStartupCPUShares($StartupCPUShares) |
||
| 2196 | |||
| 2197 | /** |
||
| 2198 | * @return mixed |
||
| 2199 | */ |
||
| 2200 | public function getStartupCPUWeight() |
||
| 2204 | |||
| 2205 | /** |
||
| 2206 | * @param mixed $StartupCPUWeight |
||
| 2207 | * @return Mount |
||
| 2208 | */ |
||
| 2209 | public function setStartupCPUWeight($StartupCPUWeight) |
||
| 2214 | |||
| 2215 | /** |
||
| 2216 | * @return mixed |
||
| 2217 | */ |
||
| 2218 | public function getStartupIOWeight() |
||
| 2222 | |||
| 2223 | /** |
||
| 2224 | * @param mixed $StartupIOWeight |
||
| 2225 | * @return Mount |
||
| 2226 | */ |
||
| 2227 | public function setStartupIOWeight($StartupIOWeight) |
||
| 2232 | |||
| 2233 | /** |
||
| 2234 | * @return mixed |
||
| 2235 | */ |
||
| 2236 | public function getSyslogFacility() |
||
| 2240 | |||
| 2241 | /** |
||
| 2242 | * @param mixed $SyslogFacility |
||
| 2243 | * @return Mount |
||
| 2244 | */ |
||
| 2245 | public function setSyslogFacility($SyslogFacility) |
||
| 2250 | |||
| 2251 | /** |
||
| 2252 | * @return mixed |
||
| 2253 | */ |
||
| 2254 | public function getSyslogLevel() |
||
| 2258 | |||
| 2259 | /** |
||
| 2260 | * @param mixed $SyslogLevel |
||
| 2261 | * @return Mount |
||
| 2262 | */ |
||
| 2263 | public function setSyslogLevel($SyslogLevel) |
||
| 2268 | |||
| 2269 | /** |
||
| 2270 | * @return mixed |
||
| 2271 | */ |
||
| 2272 | public function getSyslogLevelPrefix() |
||
| 2276 | |||
| 2277 | /** |
||
| 2278 | * @param mixed $SyslogLevelPrefix |
||
| 2279 | * @return Mount |
||
| 2280 | */ |
||
| 2281 | public function setSyslogLevelPrefix($SyslogLevelPrefix) |
||
| 2286 | |||
| 2287 | /** |
||
| 2288 | * @return mixed |
||
| 2289 | */ |
||
| 2290 | public function getSyslogPriority() |
||
| 2294 | |||
| 2295 | /** |
||
| 2296 | * @param mixed $SyslogPriority |
||
| 2297 | * @return Mount |
||
| 2298 | */ |
||
| 2299 | public function setSyslogPriority($SyslogPriority) |
||
| 2304 | |||
| 2305 | /** |
||
| 2306 | * @return mixed |
||
| 2307 | */ |
||
| 2308 | public function getSystemCallErrorNumber() |
||
| 2312 | |||
| 2313 | /** |
||
| 2314 | * @param mixed $SystemCallErrorNumber |
||
| 2315 | * @return Mount |
||
| 2316 | */ |
||
| 2317 | public function setSystemCallErrorNumber($SystemCallErrorNumber) |
||
| 2322 | |||
| 2323 | /** |
||
| 2324 | * @return mixed |
||
| 2325 | */ |
||
| 2326 | public function getTTYReset() |
||
| 2330 | |||
| 2331 | /** |
||
| 2332 | * @param mixed $TTYReset |
||
| 2333 | * @return Mount |
||
| 2334 | */ |
||
| 2335 | public function setTTYReset($TTYReset) |
||
| 2340 | |||
| 2341 | /** |
||
| 2342 | * @return mixed |
||
| 2343 | */ |
||
| 2344 | public function getTTYVHangup() |
||
| 2348 | |||
| 2349 | /** |
||
| 2350 | * @param mixed $TTYVHangup |
||
| 2351 | * @return Mount |
||
| 2352 | */ |
||
| 2353 | public function setTTYVHangup($TTYVHangup) |
||
| 2358 | |||
| 2359 | /** |
||
| 2360 | * @return mixed |
||
| 2361 | */ |
||
| 2362 | public function getTTYVTDisallocate() |
||
| 2366 | |||
| 2367 | /** |
||
| 2368 | * @param mixed $TTYVTDisallocate |
||
| 2369 | * @return Mount |
||
| 2370 | */ |
||
| 2371 | public function setTTYVTDisallocate($TTYVTDisallocate) |
||
| 2376 | |||
| 2377 | /** |
||
| 2378 | * @return mixed |
||
| 2379 | */ |
||
| 2380 | public function getTasksAccounting() |
||
| 2384 | |||
| 2385 | /** |
||
| 2386 | * @param mixed $TasksAccounting |
||
| 2387 | * @return Mount |
||
| 2388 | */ |
||
| 2389 | public function setTasksAccounting($TasksAccounting) |
||
| 2394 | |||
| 2395 | /** |
||
| 2396 | * @return mixed |
||
| 2397 | */ |
||
| 2398 | public function getTasksCurrent() |
||
| 2402 | |||
| 2403 | /** |
||
| 2404 | * @param mixed $TasksCurrent |
||
| 2405 | * @return Mount |
||
| 2406 | */ |
||
| 2407 | public function setTasksCurrent($TasksCurrent) |
||
| 2412 | |||
| 2413 | /** |
||
| 2414 | * @return mixed |
||
| 2415 | */ |
||
| 2416 | public function getTasksMax() |
||
| 2420 | |||
| 2421 | /** |
||
| 2422 | * @param mixed $TasksMax |
||
| 2423 | * @return Mount |
||
| 2424 | */ |
||
| 2425 | public function setTasksMax($TasksMax) |
||
| 2430 | |||
| 2431 | /** |
||
| 2432 | * @return mixed |
||
| 2433 | */ |
||
| 2434 | public function getTimeoutUSec() |
||
| 2438 | |||
| 2439 | /** |
||
| 2440 | * @param mixed $TimeoutUSec |
||
| 2441 | * @return Mount |
||
| 2442 | */ |
||
| 2443 | public function setTimeoutUSec($TimeoutUSec) |
||
| 2448 | |||
| 2449 | /** |
||
| 2450 | * @return mixed |
||
| 2451 | */ |
||
| 2452 | public function getTimerSlackNSec() |
||
| 2456 | |||
| 2457 | /** |
||
| 2458 | * @param mixed $TimerSlackNSec |
||
| 2459 | * @return Mount |
||
| 2460 | */ |
||
| 2461 | public function setTimerSlackNSec($TimerSlackNSec) |
||
| 2466 | |||
| 2467 | /** |
||
| 2468 | * @return mixed |
||
| 2469 | */ |
||
| 2470 | public function getTriggeredBy() |
||
| 2474 | |||
| 2475 | /** |
||
| 2476 | * @param mixed $TriggeredBy |
||
| 2477 | * @return Mount |
||
| 2478 | */ |
||
| 2479 | public function setTriggeredBy($TriggeredBy) |
||
| 2484 | |||
| 2485 | /** |
||
| 2486 | * @return mixed |
||
| 2487 | */ |
||
| 2488 | public function getType() |
||
| 2492 | |||
| 2493 | /** |
||
| 2494 | * @param mixed $Type |
||
| 2495 | * @return Mount |
||
| 2496 | */ |
||
| 2497 | public function setType($Type) |
||
| 2502 | |||
| 2503 | /** |
||
| 2504 | * @return mixed |
||
| 2505 | */ |
||
| 2506 | public function getUID() |
||
| 2510 | |||
| 2511 | /** |
||
| 2512 | * @param mixed $UID |
||
| 2513 | * @return Mount |
||
| 2514 | */ |
||
| 2515 | public function setUID($UID) |
||
| 2520 | |||
| 2521 | /** |
||
| 2522 | * @return mixed |
||
| 2523 | */ |
||
| 2524 | public function getUMask() |
||
| 2528 | |||
| 2529 | /** |
||
| 2530 | * @param mixed $UMask |
||
| 2531 | * @return Mount |
||
| 2532 | */ |
||
| 2533 | public function setUMask($UMask) |
||
| 2538 | |||
| 2539 | /** |
||
| 2540 | * @return mixed |
||
| 2541 | */ |
||
| 2542 | public function getUnitFilePreset() |
||
| 2546 | |||
| 2547 | /** |
||
| 2548 | * @param mixed $UnitFilePreset |
||
| 2549 | * @return Mount |
||
| 2550 | */ |
||
| 2551 | public function setUnitFilePreset($UnitFilePreset) |
||
| 2556 | |||
| 2557 | /** |
||
| 2558 | * @return mixed |
||
| 2559 | */ |
||
| 2560 | public function getUnitFileState() |
||
| 2564 | |||
| 2565 | /** |
||
| 2566 | * @param mixed $UnitFileState |
||
| 2567 | * @return Mount |
||
| 2568 | */ |
||
| 2569 | public function setUnitFileState($UnitFileState) |
||
| 2574 | |||
| 2575 | /** |
||
| 2576 | * @return mixed |
||
| 2577 | */ |
||
| 2578 | public function getUtmpMode() |
||
| 2582 | |||
| 2583 | /** |
||
| 2584 | * @param mixed $UtmpMode |
||
| 2585 | * @return Mount |
||
| 2586 | */ |
||
| 2587 | public function setUtmpMode($UtmpMode) |
||
| 2592 | |||
| 2593 | /** |
||
| 2594 | * @return array |
||
| 2595 | */ |
||
| 2596 | public function getWantedBy(): array |
||
| 2600 | |||
| 2601 | /** |
||
| 2602 | * @param array $WantedBy |
||
| 2603 | * @return Mount |
||
| 2604 | */ |
||
| 2605 | public function setWantedBy(array $WantedBy): Mount |
||
| 2610 | |||
| 2611 | /** |
||
| 2612 | * @return mixed |
||
| 2613 | */ |
||
| 2614 | public function getWhat() |
||
| 2618 | |||
| 2619 | /** |
||
| 2620 | * @param mixed $What |
||
| 2621 | * @return Mount |
||
| 2622 | */ |
||
| 2623 | public function setWhat($What) |
||
| 2628 | |||
| 2629 | /** |
||
| 2630 | * @return mixed |
||
| 2631 | */ |
||
| 2632 | public function getWhere() |
||
| 2636 | |||
| 2637 | /** |
||
| 2638 | * @param mixed $Where |
||
| 2639 | * @return Mount |
||
| 2640 | */ |
||
| 2641 | public function setWhere($Where) |
||
| 2646 | } |
||
| 2647 |