Complex classes like Service 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 Service, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 5 | class Service extends AbstractType |
||
| 6 | { |
||
| 7 | protected $ActiveExitTimestamp; |
||
| 8 | |||
| 9 | protected $After = []; |
||
| 10 | |||
| 11 | protected $AmbientCapabilities; |
||
| 12 | |||
| 13 | protected $BindsTo = []; |
||
| 14 | |||
| 15 | protected $BlockIOAccounting; |
||
| 16 | |||
| 17 | protected $BlockIOWeight; |
||
| 18 | |||
| 19 | protected $BoundBy = []; |
||
| 20 | |||
| 21 | protected $BusName; |
||
| 22 | |||
| 23 | protected $CPUAccounting; |
||
| 24 | |||
| 25 | protected $CPUQuotaPerSecUSec; |
||
| 26 | |||
| 27 | protected $CPUSchedulingPolicy; |
||
| 28 | |||
| 29 | protected $CPUSchedulingPriority; |
||
| 30 | |||
| 31 | protected $CPUSchedulingResetOnFork; |
||
| 32 | |||
| 33 | protected $CPUShares; |
||
| 34 | |||
| 35 | protected $CPUUsageNSec; |
||
| 36 | |||
| 37 | protected $CPUWeight; |
||
| 38 | |||
| 39 | protected $CapabilityBoundingSet; |
||
| 40 | |||
| 41 | protected $ConflictedBy = []; |
||
| 42 | |||
| 43 | protected $Conflicts = []; |
||
| 44 | |||
| 45 | protected $ConsistsOf; |
||
| 46 | |||
| 47 | protected $ControlGroup; |
||
| 48 | |||
| 49 | protected $ControlPID; |
||
| 50 | |||
| 51 | protected $Delegate; |
||
| 52 | |||
| 53 | protected $DevicePolicy; |
||
| 54 | |||
| 55 | protected $Documentation = []; |
||
| 56 | |||
| 57 | protected $DropInPaths = []; |
||
| 58 | |||
| 59 | protected $DynamicUser; |
||
| 60 | |||
| 61 | protected $Environment = []; |
||
| 62 | |||
| 63 | protected $EnvironmentFile; |
||
| 64 | |||
| 65 | protected $ExecMainCode; |
||
| 66 | |||
| 67 | protected $ExecMainExitTimestamp; |
||
| 68 | |||
| 69 | protected $ExecMainExitTimestampMonotonic; |
||
| 70 | |||
| 71 | protected $ExecMainPID; |
||
| 72 | |||
| 73 | protected $ExecMainStartTimestamp; |
||
| 74 | |||
| 75 | protected $ExecMainStartTimestampMonotonic; |
||
| 76 | |||
| 77 | protected $ExecMainStatus; |
||
| 78 | |||
| 79 | protected $ExecReload; |
||
| 80 | |||
| 81 | protected $ExecStart; |
||
| 82 | |||
| 83 | protected $ExecStartPost; |
||
| 84 | |||
| 85 | protected $ExecStartPre; |
||
| 86 | |||
| 87 | protected $ExecStop; |
||
| 88 | |||
| 89 | protected $ExecStopPost; |
||
| 90 | |||
| 91 | protected $FailureAction; |
||
| 92 | |||
| 93 | protected $FileDescriptorStoreMax; |
||
| 94 | |||
| 95 | protected $FragmentPath; |
||
| 96 | |||
| 97 | protected $GID; |
||
| 98 | |||
| 99 | protected $Group; |
||
| 100 | |||
| 101 | protected $GuessMainPID; |
||
| 102 | |||
| 103 | protected $IOAccounting; |
||
| 104 | |||
| 105 | protected $IOScheduling; |
||
| 106 | |||
| 107 | protected $IOWeight; |
||
| 108 | |||
| 109 | protected $IgnoreOnSnapshot; |
||
| 110 | |||
| 111 | protected $IgnoreSIGPIPE; |
||
| 112 | |||
| 113 | protected $InactiveEnterTimestamp; |
||
| 114 | |||
| 115 | protected $KillMode; |
||
| 116 | |||
| 117 | protected $KillSignal; |
||
| 118 | |||
| 119 | protected $LimitAS; |
||
| 120 | |||
| 121 | protected $LimitASSoft; |
||
| 122 | |||
| 123 | protected $LimitCORE; |
||
| 124 | |||
| 125 | protected $LimitCORESoft; |
||
| 126 | |||
| 127 | protected $LimitCPU; |
||
| 128 | |||
| 129 | protected $LimitCPUSoft; |
||
| 130 | |||
| 131 | protected $LimitDATA; |
||
| 132 | |||
| 133 | protected $LimitDATASoft; |
||
| 134 | |||
| 135 | protected $LimitFSIZE; |
||
| 136 | |||
| 137 | protected $LimitFSIZESoft; |
||
| 138 | |||
| 139 | protected $LimitLOCKS; |
||
| 140 | |||
| 141 | protected $LimitLOCKSSoft; |
||
| 142 | |||
| 143 | protected $LimitMEMLOCK; |
||
| 144 | |||
| 145 | protected $LimitMEMLOCKSoft; |
||
| 146 | |||
| 147 | protected $LimitMSGQUEUE; |
||
| 148 | |||
| 149 | protected $LimitMSGQUEUESoft; |
||
| 150 | |||
| 151 | protected $LimitNICE; |
||
| 152 | |||
| 153 | protected $LimitNICESoft; |
||
| 154 | |||
| 155 | protected $LimitNOFILE; |
||
| 156 | |||
| 157 | protected $LimitNOFILESoft; |
||
| 158 | |||
| 159 | protected $LimitNPROC; |
||
| 160 | |||
| 161 | protected $LimitNPROCSoft; |
||
| 162 | |||
| 163 | protected $LimitRSS; |
||
| 164 | |||
| 165 | protected $LimitRSSSoft; |
||
| 166 | |||
| 167 | protected $LimitRTPRIO; |
||
| 168 | |||
| 169 | protected $LimitRTPRIOSoft; |
||
| 170 | |||
| 171 | protected $LimitRTTIME; |
||
| 172 | |||
| 173 | protected $LimitRTTIMESoft; |
||
| 174 | |||
| 175 | protected $LimitSIGPENDING; |
||
| 176 | |||
| 177 | protected $LimitSIGPENDINGSoft; |
||
| 178 | |||
| 179 | protected $LimitSTACK; |
||
| 180 | |||
| 181 | protected $LimitSTACKSoft; |
||
| 182 | |||
| 183 | protected $MainPID; |
||
| 184 | |||
| 185 | protected $MemoryAccounting; |
||
| 186 | |||
| 187 | protected $MemoryCurrent; |
||
| 188 | |||
| 189 | protected $MemoryDenyWriteExecute; |
||
| 190 | |||
| 191 | protected $MemoryHigh; |
||
| 192 | |||
| 193 | protected $MemoryLimit; |
||
| 194 | |||
| 195 | protected $MemoryLow; |
||
| 196 | |||
| 197 | protected $MemoryMax; |
||
| 198 | |||
| 199 | protected $MemorySwapMax; |
||
| 200 | |||
| 201 | protected $MountFlags; |
||
| 202 | |||
| 203 | protected $NFileDescriptorStore; |
||
| 204 | |||
| 205 | protected $Nice; |
||
| 206 | |||
| 207 | protected $NoNewPrivileges; |
||
| 208 | |||
| 209 | protected $NonBlocking; |
||
| 210 | |||
| 211 | protected $NotifyAccess; |
||
| 212 | |||
| 213 | protected $OOMScoreAdjust; |
||
| 214 | |||
| 215 | protected $PAMName; |
||
| 216 | |||
| 217 | protected $PartOf; |
||
| 218 | |||
| 219 | protected $PIDFile; |
||
| 220 | |||
| 221 | protected $PermissionsStartOnly; |
||
| 222 | |||
| 223 | protected $PrivateDevices; |
||
| 224 | |||
| 225 | protected $PrivateNetwork; |
||
| 226 | |||
| 227 | protected $PrivateTmp; |
||
| 228 | |||
| 229 | protected $PrivateUsers; |
||
| 230 | |||
| 231 | protected $PropagatesReloadTo; |
||
| 232 | |||
| 233 | protected $ProtectControlGroups; |
||
| 234 | |||
| 235 | protected $ProtectHome; |
||
| 236 | |||
| 237 | protected $ProtectKernelModules; |
||
| 238 | |||
| 239 | protected $ProtectKernelTunables; |
||
| 240 | |||
| 241 | protected $ProtectSystem; |
||
| 242 | |||
| 243 | protected $ReadOnlyPaths = []; |
||
| 244 | |||
| 245 | protected $ReadWritePaths = []; |
||
| 246 | |||
| 247 | protected $ReloadPropagatedFrom; |
||
| 248 | |||
| 249 | protected $RemainAfterExit; |
||
| 250 | |||
| 251 | protected $RemoveIPC; |
||
| 252 | |||
| 253 | protected $RequiredBy = []; |
||
| 254 | |||
| 255 | protected $RequiredByOverridable = []; |
||
| 256 | |||
| 257 | protected $Requires = []; |
||
| 258 | |||
| 259 | protected $RequiresMountsFor = []; |
||
| 260 | |||
| 261 | protected $Requisite; |
||
| 262 | |||
| 263 | protected $RequisiteOf; |
||
| 264 | |||
| 265 | protected $Restart; |
||
| 266 | |||
| 267 | protected $RestartUSec; |
||
| 268 | |||
| 269 | protected $RestrictNamespace; |
||
| 270 | |||
| 271 | protected $RestrictRealtime; |
||
| 272 | |||
| 273 | protected $Result; |
||
| 274 | |||
| 275 | protected $RootDirectoryStartOnly; |
||
| 276 | |||
| 277 | protected $RuntimeDirectory; |
||
| 278 | |||
| 279 | protected $RuntimeDirectoryMode; |
||
| 280 | |||
| 281 | protected $RuntimeMaxUSec; |
||
| 282 | |||
| 283 | protected $SameProcessGroup; |
||
| 284 | |||
| 285 | protected $SecureBits; |
||
| 286 | |||
| 287 | protected $SendSIGHUP; |
||
| 288 | |||
| 289 | protected $SendSIGKILL; |
||
| 290 | |||
| 291 | protected $Slice; |
||
| 292 | |||
| 293 | protected $SourcePath; |
||
| 294 | |||
| 295 | protected $StandardError; |
||
| 296 | |||
| 297 | protected $StandardInput; |
||
| 298 | |||
| 299 | protected $StandardOutput; |
||
| 300 | |||
| 301 | protected $StartupBlockIOWeight; |
||
| 302 | |||
| 303 | protected $StartupCPUShares; |
||
| 304 | |||
| 305 | protected $StartupCPUWeight; |
||
| 306 | |||
| 307 | protected $StartupIOWeight; |
||
| 308 | |||
| 309 | protected $StatusText; |
||
| 310 | |||
| 311 | protected $StatusErrno; |
||
| 312 | |||
| 313 | protected $SyslogFacility; |
||
| 314 | |||
| 315 | protected $SyslogIdentifier; |
||
| 316 | |||
| 317 | protected $SyslogLevel; |
||
| 318 | |||
| 319 | protected $SyslogLevelPrefix; |
||
| 320 | |||
| 321 | protected $SyslogPriority; |
||
| 322 | |||
| 323 | protected $SystemCallErrorNumber; |
||
| 324 | |||
| 325 | protected $SystemCallFilter; |
||
| 326 | |||
| 327 | protected $TTYPath; |
||
| 328 | |||
| 329 | protected $TTYReset; |
||
| 330 | |||
| 331 | protected $TTYVHangup; |
||
| 332 | |||
| 333 | protected $TTYVTDisallocate; |
||
| 334 | |||
| 335 | protected $TasksAccounting; |
||
| 336 | |||
| 337 | protected $TasksCurrent; |
||
| 338 | |||
| 339 | protected $TasksMax; |
||
| 340 | |||
| 341 | protected $TimeoutStartUSec; |
||
| 342 | |||
| 343 | protected $TimeoutStopUSec; |
||
| 344 | |||
| 345 | protected $TimerSlackNSec; |
||
| 346 | |||
| 347 | protected $TriggeredBy; |
||
| 348 | |||
| 349 | protected $Type; |
||
| 350 | |||
| 351 | protected $UID; |
||
| 352 | |||
| 353 | protected $UMask; |
||
| 354 | |||
| 355 | protected $UnitFilePreset; |
||
| 356 | |||
| 357 | protected $UnitFileState; |
||
| 358 | |||
| 359 | protected $User; |
||
| 360 | |||
| 361 | protected $UtmpIdentifier; |
||
| 362 | |||
| 363 | protected $UtmpMode; |
||
| 364 | |||
| 365 | protected $WantedBy = []; |
||
| 366 | |||
| 367 | protected $Wants = []; |
||
| 368 | |||
| 369 | protected $WatchdogTimestamp; |
||
| 370 | |||
| 371 | protected $WatchdogTimestampMonotonic; |
||
| 372 | |||
| 373 | protected $WatchdogUSec; |
||
| 374 | |||
| 375 | protected $WorkingDirectory; |
||
| 376 | |||
| 377 | /** |
||
| 378 | * @return mixed |
||
| 379 | */ |
||
| 380 | public function getActiveExitTimestamp() |
||
| 384 | |||
| 385 | /** |
||
| 386 | * @param mixed $ActiveExitTimestamp |
||
| 387 | * @return Service |
||
| 388 | */ |
||
| 389 | public function setActiveExitTimestamp($ActiveExitTimestamp) |
||
| 394 | |||
| 395 | /** |
||
| 396 | * @return array |
||
| 397 | */ |
||
| 398 | public function getAfter(): array |
||
| 402 | |||
| 403 | /** |
||
| 404 | * @param array $After |
||
| 405 | * @return Service |
||
| 406 | */ |
||
| 407 | public function setAfter(array $After): Service |
||
| 412 | |||
| 413 | /** |
||
| 414 | * @return mixed |
||
| 415 | */ |
||
| 416 | public function getAmbientCapabilities() |
||
| 420 | |||
| 421 | /** |
||
| 422 | * @param mixed $AmbientCapabilities |
||
| 423 | * @return Service |
||
| 424 | */ |
||
| 425 | public function setAmbientCapabilities($AmbientCapabilities) |
||
| 430 | |||
| 431 | /** |
||
| 432 | * @return array |
||
| 433 | */ |
||
| 434 | public function getBindsTo(): array |
||
| 438 | |||
| 439 | /** |
||
| 440 | * @param array $BindsTo |
||
| 441 | * @return Service |
||
| 442 | */ |
||
| 443 | public function setBindsTo(array $BindsTo): Service |
||
| 448 | |||
| 449 | /** |
||
| 450 | * @return mixed |
||
| 451 | */ |
||
| 452 | public function getBlockIOAccounting() |
||
| 456 | |||
| 457 | /** |
||
| 458 | * @param mixed $BlockIOAccounting |
||
| 459 | * @return Service |
||
| 460 | */ |
||
| 461 | public function setBlockIOAccounting($BlockIOAccounting) |
||
| 466 | |||
| 467 | /** |
||
| 468 | * @return mixed |
||
| 469 | */ |
||
| 470 | public function getBlockIOWeight() |
||
| 474 | |||
| 475 | /** |
||
| 476 | * @param mixed $BlockIOWeight |
||
| 477 | * @return Service |
||
| 478 | */ |
||
| 479 | public function setBlockIOWeight($BlockIOWeight) |
||
| 484 | |||
| 485 | /** |
||
| 486 | * @return array |
||
| 487 | */ |
||
| 488 | public function getBoundBy(): array |
||
| 492 | |||
| 493 | /** |
||
| 494 | * @param array $BoundBy |
||
| 495 | * @return Service |
||
| 496 | */ |
||
| 497 | public function setBoundBy(array $BoundBy): Service |
||
| 502 | |||
| 503 | /** |
||
| 504 | * @return mixed |
||
| 505 | */ |
||
| 506 | public function getBusName() |
||
| 510 | |||
| 511 | /** |
||
| 512 | * @param mixed $BusName |
||
| 513 | * @return Service |
||
| 514 | */ |
||
| 515 | public function setBusName($BusName) |
||
| 520 | |||
| 521 | /** |
||
| 522 | * @return mixed |
||
| 523 | */ |
||
| 524 | public function getCPUAccounting() |
||
| 528 | |||
| 529 | /** |
||
| 530 | * @param mixed $CPUAccounting |
||
| 531 | * @return Service |
||
| 532 | */ |
||
| 533 | public function setCPUAccounting($CPUAccounting) |
||
| 538 | |||
| 539 | /** |
||
| 540 | * @return mixed |
||
| 541 | */ |
||
| 542 | public function getCPUQuotaPerSecUSec() |
||
| 546 | |||
| 547 | /** |
||
| 548 | * @param mixed $CPUQuotaPerSecUSec |
||
| 549 | * @return Service |
||
| 550 | */ |
||
| 551 | public function setCPUQuotaPerSecUSec($CPUQuotaPerSecUSec) |
||
| 556 | |||
| 557 | /** |
||
| 558 | * @return mixed |
||
| 559 | */ |
||
| 560 | public function getCPUSchedulingPolicy() |
||
| 564 | |||
| 565 | /** |
||
| 566 | * @param mixed $CPUSchedulingPolicy |
||
| 567 | * @return Service |
||
| 568 | */ |
||
| 569 | public function setCPUSchedulingPolicy($CPUSchedulingPolicy) |
||
| 574 | |||
| 575 | /** |
||
| 576 | * @return mixed |
||
| 577 | */ |
||
| 578 | public function getCPUSchedulingPriority() |
||
| 582 | |||
| 583 | /** |
||
| 584 | * @param mixed $CPUSchedulingPriority |
||
| 585 | * @return Service |
||
| 586 | */ |
||
| 587 | public function setCPUSchedulingPriority($CPUSchedulingPriority) |
||
| 592 | |||
| 593 | /** |
||
| 594 | * @return mixed |
||
| 595 | */ |
||
| 596 | public function getCPUSchedulingResetOnFork() |
||
| 600 | |||
| 601 | /** |
||
| 602 | * @param mixed $CPUSchedulingResetOnFork |
||
| 603 | * @return Service |
||
| 604 | */ |
||
| 605 | public function setCPUSchedulingResetOnFork($CPUSchedulingResetOnFork) |
||
| 610 | |||
| 611 | /** |
||
| 612 | * @return mixed |
||
| 613 | */ |
||
| 614 | public function getCPUShares() |
||
| 618 | |||
| 619 | /** |
||
| 620 | * @param mixed $CPUShares |
||
| 621 | * @return Service |
||
| 622 | */ |
||
| 623 | public function setCPUShares($CPUShares) |
||
| 628 | |||
| 629 | /** |
||
| 630 | * @return mixed |
||
| 631 | */ |
||
| 632 | public function getCPUUsageNSec() |
||
| 636 | |||
| 637 | /** |
||
| 638 | * @param mixed $CPUUsageNSec |
||
| 639 | * @return Service |
||
| 640 | */ |
||
| 641 | public function setCPUUsageNSec($CPUUsageNSec) |
||
| 646 | |||
| 647 | /** |
||
| 648 | * @return mixed |
||
| 649 | */ |
||
| 650 | public function getCPUWeight() |
||
| 654 | |||
| 655 | /** |
||
| 656 | * @param mixed $CPUWeight |
||
| 657 | * @return Service |
||
| 658 | */ |
||
| 659 | public function setCPUWeight($CPUWeight) |
||
| 664 | |||
| 665 | /** |
||
| 666 | * @return mixed |
||
| 667 | */ |
||
| 668 | public function getCapabilityBoundingSet() |
||
| 672 | |||
| 673 | /** |
||
| 674 | * @param mixed $CapabilityBoundingSet |
||
| 675 | * @return Service |
||
| 676 | */ |
||
| 677 | public function setCapabilityBoundingSet($CapabilityBoundingSet) |
||
| 682 | |||
| 683 | /** |
||
| 684 | * @return array |
||
| 685 | */ |
||
| 686 | public function getConflictedBy(): array |
||
| 690 | |||
| 691 | /** |
||
| 692 | * @param array $ConflictedBy |
||
| 693 | * @return Service |
||
| 694 | */ |
||
| 695 | public function setConflictedBy(array $ConflictedBy): Service |
||
| 700 | |||
| 701 | /** |
||
| 702 | * @return array |
||
| 703 | */ |
||
| 704 | public function getConflicts(): array |
||
| 708 | |||
| 709 | /** |
||
| 710 | * @param array $Conflicts |
||
| 711 | * @return Service |
||
| 712 | */ |
||
| 713 | public function setConflicts(array $Conflicts): Service |
||
| 718 | |||
| 719 | /** |
||
| 720 | * @return mixed |
||
| 721 | */ |
||
| 722 | public function getConsistsOf() |
||
| 726 | |||
| 727 | /** |
||
| 728 | * @param mixed $ConsistsOf |
||
| 729 | * @return Service |
||
| 730 | */ |
||
| 731 | public function setConsistsOf($ConsistsOf) |
||
| 736 | |||
| 737 | /** |
||
| 738 | * @return mixed |
||
| 739 | */ |
||
| 740 | public function getControlGroup() |
||
| 744 | |||
| 745 | /** |
||
| 746 | * @param mixed $ControlGroup |
||
| 747 | * @return Service |
||
| 748 | */ |
||
| 749 | public function setControlGroup($ControlGroup) |
||
| 754 | |||
| 755 | /** |
||
| 756 | * @return mixed |
||
| 757 | */ |
||
| 758 | public function getControlPID() |
||
| 762 | |||
| 763 | /** |
||
| 764 | * @param mixed $ControlPID |
||
| 765 | * @return Service |
||
| 766 | */ |
||
| 767 | public function setControlPID($ControlPID) |
||
| 772 | |||
| 773 | /** |
||
| 774 | * @return mixed |
||
| 775 | */ |
||
| 776 | public function getDelegate() |
||
| 780 | |||
| 781 | /** |
||
| 782 | * @param mixed $Delegate |
||
| 783 | * @return Service |
||
| 784 | */ |
||
| 785 | public function setDelegate($Delegate) |
||
| 790 | |||
| 791 | /** |
||
| 792 | * @return mixed |
||
| 793 | */ |
||
| 794 | public function getDevicePolicy() |
||
| 798 | |||
| 799 | /** |
||
| 800 | * @param mixed $DevicePolicy |
||
| 801 | * @return Service |
||
| 802 | */ |
||
| 803 | public function setDevicePolicy($DevicePolicy) |
||
| 808 | |||
| 809 | /** |
||
| 810 | * @return array |
||
| 811 | */ |
||
| 812 | public function getDocumentation(): array |
||
| 816 | |||
| 817 | /** |
||
| 818 | * @param array $Documentation |
||
| 819 | * @return Service |
||
| 820 | */ |
||
| 821 | public function setDocumentation(array $Documentation): Service |
||
| 826 | |||
| 827 | /** |
||
| 828 | * @return array |
||
| 829 | */ |
||
| 830 | public function getDropInPaths(): array |
||
| 834 | |||
| 835 | /** |
||
| 836 | * @param array $DropInPaths |
||
| 837 | * @return Service |
||
| 838 | */ |
||
| 839 | public function setDropInPaths(array $DropInPaths): Service |
||
| 844 | |||
| 845 | /** |
||
| 846 | * @return mixed |
||
| 847 | */ |
||
| 848 | public function getDynamicUser() |
||
| 852 | |||
| 853 | /** |
||
| 854 | * @param mixed $DynamicUser |
||
| 855 | * @return Service |
||
| 856 | */ |
||
| 857 | public function setDynamicUser($DynamicUser) |
||
| 862 | |||
| 863 | /** |
||
| 864 | * @return array |
||
| 865 | */ |
||
| 866 | public function getEnvironment(): array |
||
| 870 | |||
| 871 | /** |
||
| 872 | * @param array $Environment |
||
| 873 | * @return Service |
||
| 874 | */ |
||
| 875 | public function setEnvironment(array $Environment): Service |
||
| 880 | |||
| 881 | /** |
||
| 882 | * @return mixed |
||
| 883 | */ |
||
| 884 | public function getEnvironmentFile() |
||
| 888 | |||
| 889 | /** |
||
| 890 | * @param mixed $EnvironmentFile |
||
| 891 | * @return Service |
||
| 892 | */ |
||
| 893 | public function setEnvironmentFile($EnvironmentFile) |
||
| 898 | |||
| 899 | /** |
||
| 900 | * @return mixed |
||
| 901 | */ |
||
| 902 | public function getExecMainCode() |
||
| 906 | |||
| 907 | /** |
||
| 908 | * @param mixed $ExecMainCode |
||
| 909 | * @return Service |
||
| 910 | */ |
||
| 911 | public function setExecMainCode($ExecMainCode) |
||
| 916 | |||
| 917 | /** |
||
| 918 | * @return mixed |
||
| 919 | */ |
||
| 920 | public function getExecMainExitTimestamp() |
||
| 924 | |||
| 925 | /** |
||
| 926 | * @param mixed $ExecMainExitTimestamp |
||
| 927 | * @return Service |
||
| 928 | */ |
||
| 929 | public function setExecMainExitTimestamp($ExecMainExitTimestamp) |
||
| 934 | |||
| 935 | /** |
||
| 936 | * @return mixed |
||
| 937 | */ |
||
| 938 | public function getExecMainExitTimestampMonotonic() |
||
| 942 | |||
| 943 | /** |
||
| 944 | * @param mixed $ExecMainExitTimestampMonotonic |
||
| 945 | * @return Service |
||
| 946 | */ |
||
| 947 | public function setExecMainExitTimestampMonotonic($ExecMainExitTimestampMonotonic) |
||
| 952 | |||
| 953 | /** |
||
| 954 | * @return mixed |
||
| 955 | */ |
||
| 956 | public function getExecMainPID() |
||
| 960 | |||
| 961 | /** |
||
| 962 | * @param mixed $ExecMainPID |
||
| 963 | * @return Service |
||
| 964 | */ |
||
| 965 | public function setExecMainPID($ExecMainPID) |
||
| 970 | |||
| 971 | /** |
||
| 972 | * @return mixed |
||
| 973 | */ |
||
| 974 | public function getExecMainStartTimestamp() |
||
| 978 | |||
| 979 | /** |
||
| 980 | * @param mixed $ExecMainStartTimestamp |
||
| 981 | * @return Service |
||
| 982 | */ |
||
| 983 | public function setExecMainStartTimestamp($ExecMainStartTimestamp) |
||
| 988 | |||
| 989 | /** |
||
| 990 | * @return mixed |
||
| 991 | */ |
||
| 992 | public function getExecMainStartTimestampMonotonic() |
||
| 996 | |||
| 997 | /** |
||
| 998 | * @param mixed $ExecMainStartTimestampMonotonic |
||
| 999 | * @return Service |
||
| 1000 | */ |
||
| 1001 | public function setExecMainStartTimestampMonotonic($ExecMainStartTimestampMonotonic) |
||
| 1006 | |||
| 1007 | /** |
||
| 1008 | * @return mixed |
||
| 1009 | */ |
||
| 1010 | public function getExecMainStatus() |
||
| 1014 | |||
| 1015 | /** |
||
| 1016 | * @param mixed $ExecMainStatus |
||
| 1017 | * @return Service |
||
| 1018 | */ |
||
| 1019 | public function setExecMainStatus($ExecMainStatus) |
||
| 1024 | |||
| 1025 | /** |
||
| 1026 | * @return mixed |
||
| 1027 | */ |
||
| 1028 | public function getExecReload() |
||
| 1032 | |||
| 1033 | /** |
||
| 1034 | * @param mixed $ExecReload |
||
| 1035 | * @return Service |
||
| 1036 | */ |
||
| 1037 | public function setExecReload($ExecReload) |
||
| 1042 | |||
| 1043 | /** |
||
| 1044 | * @return mixed |
||
| 1045 | */ |
||
| 1046 | public function getExecStart() |
||
| 1050 | |||
| 1051 | /** |
||
| 1052 | * @param mixed $ExecStart |
||
| 1053 | * @return Service |
||
| 1054 | */ |
||
| 1055 | public function setExecStart($ExecStart) |
||
| 1060 | |||
| 1061 | /** |
||
| 1062 | * @return mixed |
||
| 1063 | */ |
||
| 1064 | public function getExecStartPost() |
||
| 1068 | |||
| 1069 | /** |
||
| 1070 | * @param mixed $ExecStartPost |
||
| 1071 | * @return Service |
||
| 1072 | */ |
||
| 1073 | public function setExecStartPost($ExecStartPost) |
||
| 1078 | |||
| 1079 | /** |
||
| 1080 | * @return mixed |
||
| 1081 | */ |
||
| 1082 | public function getExecStartPre() |
||
| 1086 | |||
| 1087 | /** |
||
| 1088 | * @param mixed $ExecStartPre |
||
| 1089 | * @return Service |
||
| 1090 | */ |
||
| 1091 | public function setExecStartPre($ExecStartPre) |
||
| 1096 | |||
| 1097 | /** |
||
| 1098 | * @return mixed |
||
| 1099 | */ |
||
| 1100 | public function getExecStop() |
||
| 1104 | |||
| 1105 | /** |
||
| 1106 | * @param mixed $ExecStop |
||
| 1107 | * @return Service |
||
| 1108 | */ |
||
| 1109 | public function setExecStop($ExecStop) |
||
| 1114 | |||
| 1115 | /** |
||
| 1116 | * @return mixed |
||
| 1117 | */ |
||
| 1118 | public function getExecStopPost() |
||
| 1122 | |||
| 1123 | /** |
||
| 1124 | * @param mixed $ExecStopPost |
||
| 1125 | * @return Service |
||
| 1126 | */ |
||
| 1127 | public function setExecStopPost($ExecStopPost) |
||
| 1132 | |||
| 1133 | /** |
||
| 1134 | * @return mixed |
||
| 1135 | */ |
||
| 1136 | public function getFailureAction() |
||
| 1140 | |||
| 1141 | /** |
||
| 1142 | * @param mixed $FailureAction |
||
| 1143 | * @return Service |
||
| 1144 | */ |
||
| 1145 | public function setFailureAction($FailureAction) |
||
| 1150 | |||
| 1151 | /** |
||
| 1152 | * @return mixed |
||
| 1153 | */ |
||
| 1154 | public function getFileDescriptorStoreMax() |
||
| 1158 | |||
| 1159 | /** |
||
| 1160 | * @param mixed $FileDescriptorStoreMax |
||
| 1161 | * @return Service |
||
| 1162 | */ |
||
| 1163 | public function setFileDescriptorStoreMax($FileDescriptorStoreMax) |
||
| 1168 | |||
| 1169 | /** |
||
| 1170 | * @return mixed |
||
| 1171 | */ |
||
| 1172 | public function getFragmentPath() |
||
| 1176 | |||
| 1177 | /** |
||
| 1178 | * @param mixed $FragmentPath |
||
| 1179 | * @return Service |
||
| 1180 | */ |
||
| 1181 | public function setFragmentPath($FragmentPath) |
||
| 1186 | |||
| 1187 | /** |
||
| 1188 | * @return mixed |
||
| 1189 | */ |
||
| 1190 | public function getGID() |
||
| 1194 | |||
| 1195 | /** |
||
| 1196 | * @param mixed $GID |
||
| 1197 | * @return Service |
||
| 1198 | */ |
||
| 1199 | public function setGID($GID) |
||
| 1204 | |||
| 1205 | /** |
||
| 1206 | * @return mixed |
||
| 1207 | */ |
||
| 1208 | public function getGroup() |
||
| 1212 | |||
| 1213 | /** |
||
| 1214 | * @param mixed $Group |
||
| 1215 | * @return Service |
||
| 1216 | */ |
||
| 1217 | public function setGroup($Group) |
||
| 1222 | |||
| 1223 | /** |
||
| 1224 | * @return mixed |
||
| 1225 | */ |
||
| 1226 | public function getGuessMainPID() |
||
| 1230 | |||
| 1231 | /** |
||
| 1232 | * @param mixed $GuessMainPID |
||
| 1233 | * @return Service |
||
| 1234 | */ |
||
| 1235 | public function setGuessMainPID($GuessMainPID) |
||
| 1240 | |||
| 1241 | /** |
||
| 1242 | * @return mixed |
||
| 1243 | */ |
||
| 1244 | public function getIOAccounting() |
||
| 1248 | |||
| 1249 | /** |
||
| 1250 | * @param mixed $IOAccounting |
||
| 1251 | * @return Service |
||
| 1252 | */ |
||
| 1253 | public function setIOAccounting($IOAccounting) |
||
| 1258 | |||
| 1259 | /** |
||
| 1260 | * @return mixed |
||
| 1261 | */ |
||
| 1262 | public function getIOScheduling() |
||
| 1266 | |||
| 1267 | /** |
||
| 1268 | * @param mixed $IOScheduling |
||
| 1269 | * @return Service |
||
| 1270 | */ |
||
| 1271 | public function setIOScheduling($IOScheduling) |
||
| 1276 | |||
| 1277 | /** |
||
| 1278 | * @return mixed |
||
| 1279 | */ |
||
| 1280 | public function getIgnoreOnSnapshot() |
||
| 1284 | |||
| 1285 | /** |
||
| 1286 | * @param mixed $IgnoreOnSnapshot |
||
| 1287 | * @return Service |
||
| 1288 | */ |
||
| 1289 | public function setIgnoreOnSnapshot($IgnoreOnSnapshot) |
||
| 1294 | |||
| 1295 | /** |
||
| 1296 | * @return mixed |
||
| 1297 | */ |
||
| 1298 | public function getIOWeight() |
||
| 1302 | |||
| 1303 | /** |
||
| 1304 | * @param mixed $IOWeight |
||
| 1305 | * @return Service |
||
| 1306 | */ |
||
| 1307 | public function setIOWeight($IOWeight) |
||
| 1312 | |||
| 1313 | /** |
||
| 1314 | * @return mixed |
||
| 1315 | */ |
||
| 1316 | public function getIgnoreSIGPIPE() |
||
| 1320 | |||
| 1321 | /** |
||
| 1322 | * @param mixed $IgnoreSIGPIPE |
||
| 1323 | * @return Service |
||
| 1324 | */ |
||
| 1325 | public function setIgnoreSIGPIPE($IgnoreSIGPIPE) |
||
| 1330 | |||
| 1331 | /** |
||
| 1332 | * @return mixed |
||
| 1333 | */ |
||
| 1334 | public function getInactiveEnterTimestamp() |
||
| 1338 | |||
| 1339 | /** |
||
| 1340 | * @param mixed $InactiveEnterTimestamp |
||
| 1341 | * @return Service |
||
| 1342 | */ |
||
| 1343 | public function setInactiveEnterTimestamp($InactiveEnterTimestamp) |
||
| 1348 | |||
| 1349 | /** |
||
| 1350 | * @return mixed |
||
| 1351 | */ |
||
| 1352 | public function getKillMode() |
||
| 1356 | |||
| 1357 | /** |
||
| 1358 | * @param mixed $KillMode |
||
| 1359 | * @return Service |
||
| 1360 | */ |
||
| 1361 | public function setKillMode($KillMode) |
||
| 1366 | |||
| 1367 | /** |
||
| 1368 | * @return mixed |
||
| 1369 | */ |
||
| 1370 | public function getKillSignal() |
||
| 1374 | |||
| 1375 | /** |
||
| 1376 | * @param mixed $KillSignal |
||
| 1377 | * @return Service |
||
| 1378 | */ |
||
| 1379 | public function setKillSignal($KillSignal) |
||
| 1384 | |||
| 1385 | /** |
||
| 1386 | * @return mixed |
||
| 1387 | */ |
||
| 1388 | public function getLimitAS() |
||
| 1392 | |||
| 1393 | /** |
||
| 1394 | * @param mixed $LimitAS |
||
| 1395 | * @return Service |
||
| 1396 | */ |
||
| 1397 | public function setLimitAS($LimitAS) |
||
| 1402 | |||
| 1403 | /** |
||
| 1404 | * @return mixed |
||
| 1405 | */ |
||
| 1406 | public function getLimitASSoft() |
||
| 1410 | |||
| 1411 | /** |
||
| 1412 | * @param mixed $LimitASSoft |
||
| 1413 | * @return Service |
||
| 1414 | */ |
||
| 1415 | public function setLimitASSoft($LimitASSoft) |
||
| 1420 | |||
| 1421 | /** |
||
| 1422 | * @return mixed |
||
| 1423 | */ |
||
| 1424 | public function getLimitCORE() |
||
| 1428 | |||
| 1429 | /** |
||
| 1430 | * @param mixed $LimitCORE |
||
| 1431 | * @return Service |
||
| 1432 | */ |
||
| 1433 | public function setLimitCORE($LimitCORE) |
||
| 1438 | |||
| 1439 | /** |
||
| 1440 | * @return mixed |
||
| 1441 | */ |
||
| 1442 | public function getLimitCORESoft() |
||
| 1446 | |||
| 1447 | /** |
||
| 1448 | * @param mixed $LimitCORESoft |
||
| 1449 | * @return Service |
||
| 1450 | */ |
||
| 1451 | public function setLimitCORESoft($LimitCORESoft) |
||
| 1456 | |||
| 1457 | /** |
||
| 1458 | * @return mixed |
||
| 1459 | */ |
||
| 1460 | public function getLimitCPU() |
||
| 1464 | |||
| 1465 | /** |
||
| 1466 | * @param mixed $LimitCPU |
||
| 1467 | * @return Service |
||
| 1468 | */ |
||
| 1469 | public function setLimitCPU($LimitCPU) |
||
| 1474 | |||
| 1475 | /** |
||
| 1476 | * @return mixed |
||
| 1477 | */ |
||
| 1478 | public function getLimitCPUSoft() |
||
| 1482 | |||
| 1483 | /** |
||
| 1484 | * @param mixed $LimitCPUSoft |
||
| 1485 | * @return Service |
||
| 1486 | */ |
||
| 1487 | public function setLimitCPUSoft($LimitCPUSoft) |
||
| 1492 | |||
| 1493 | /** |
||
| 1494 | * @return mixed |
||
| 1495 | */ |
||
| 1496 | public function getLimitDATA() |
||
| 1500 | |||
| 1501 | /** |
||
| 1502 | * @param mixed $LimitDATA |
||
| 1503 | * @return Service |
||
| 1504 | */ |
||
| 1505 | public function setLimitDATA($LimitDATA) |
||
| 1510 | |||
| 1511 | /** |
||
| 1512 | * @return mixed |
||
| 1513 | */ |
||
| 1514 | public function getLimitDATASoft() |
||
| 1518 | |||
| 1519 | /** |
||
| 1520 | * @param mixed $LimitDATASoft |
||
| 1521 | * @return Service |
||
| 1522 | */ |
||
| 1523 | public function setLimitDATASoft($LimitDATASoft) |
||
| 1528 | |||
| 1529 | /** |
||
| 1530 | * @return mixed |
||
| 1531 | */ |
||
| 1532 | public function getLimitFSIZE() |
||
| 1536 | |||
| 1537 | /** |
||
| 1538 | * @param mixed $LimitFSIZE |
||
| 1539 | * @return Service |
||
| 1540 | */ |
||
| 1541 | public function setLimitFSIZE($LimitFSIZE) |
||
| 1546 | |||
| 1547 | /** |
||
| 1548 | * @return mixed |
||
| 1549 | */ |
||
| 1550 | public function getLimitFSIZESoft() |
||
| 1554 | |||
| 1555 | /** |
||
| 1556 | * @param mixed $LimitFSIZESoft |
||
| 1557 | * @return Service |
||
| 1558 | */ |
||
| 1559 | public function setLimitFSIZESoft($LimitFSIZESoft) |
||
| 1564 | |||
| 1565 | /** |
||
| 1566 | * @return mixed |
||
| 1567 | */ |
||
| 1568 | public function getLimitLOCKS() |
||
| 1572 | |||
| 1573 | /** |
||
| 1574 | * @param mixed $LimitLOCKS |
||
| 1575 | * @return Service |
||
| 1576 | */ |
||
| 1577 | public function setLimitLOCKS($LimitLOCKS) |
||
| 1582 | |||
| 1583 | /** |
||
| 1584 | * @return mixed |
||
| 1585 | */ |
||
| 1586 | public function getLimitLOCKSSoft() |
||
| 1590 | |||
| 1591 | /** |
||
| 1592 | * @param mixed $LimitLOCKSSoft |
||
| 1593 | * @return Service |
||
| 1594 | */ |
||
| 1595 | public function setLimitLOCKSSoft($LimitLOCKSSoft) |
||
| 1600 | |||
| 1601 | /** |
||
| 1602 | * @return mixed |
||
| 1603 | */ |
||
| 1604 | public function getLimitMEMLOCK() |
||
| 1608 | |||
| 1609 | /** |
||
| 1610 | * @param mixed $LimitMEMLOCK |
||
| 1611 | * @return Service |
||
| 1612 | */ |
||
| 1613 | public function setLimitMEMLOCK($LimitMEMLOCK) |
||
| 1618 | |||
| 1619 | /** |
||
| 1620 | * @return mixed |
||
| 1621 | */ |
||
| 1622 | public function getLimitMEMLOCKSoft() |
||
| 1626 | |||
| 1627 | /** |
||
| 1628 | * @param mixed $LimitMEMLOCKSoft |
||
| 1629 | * @return Service |
||
| 1630 | */ |
||
| 1631 | public function setLimitMEMLOCKSoft($LimitMEMLOCKSoft) |
||
| 1636 | |||
| 1637 | /** |
||
| 1638 | * @return mixed |
||
| 1639 | */ |
||
| 1640 | public function getLimitMSGQUEUE() |
||
| 1644 | |||
| 1645 | /** |
||
| 1646 | * @param mixed $LimitMSGQUEUE |
||
| 1647 | * @return Service |
||
| 1648 | */ |
||
| 1649 | public function setLimitMSGQUEUE($LimitMSGQUEUE) |
||
| 1654 | |||
| 1655 | /** |
||
| 1656 | * @return mixed |
||
| 1657 | */ |
||
| 1658 | public function getLimitMSGQUEUESoft() |
||
| 1662 | |||
| 1663 | /** |
||
| 1664 | * @param mixed $LimitMSGQUEUESoft |
||
| 1665 | * @return Service |
||
| 1666 | */ |
||
| 1667 | public function setLimitMSGQUEUESoft($LimitMSGQUEUESoft) |
||
| 1672 | |||
| 1673 | /** |
||
| 1674 | * @return mixed |
||
| 1675 | */ |
||
| 1676 | public function getLimitNICE() |
||
| 1680 | |||
| 1681 | /** |
||
| 1682 | * @param mixed $LimitNICE |
||
| 1683 | * @return Service |
||
| 1684 | */ |
||
| 1685 | public function setLimitNICE($LimitNICE) |
||
| 1690 | |||
| 1691 | /** |
||
| 1692 | * @return mixed |
||
| 1693 | */ |
||
| 1694 | public function getLimitNICESoft() |
||
| 1698 | |||
| 1699 | /** |
||
| 1700 | * @param mixed $LimitNICESoft |
||
| 1701 | * @return Service |
||
| 1702 | */ |
||
| 1703 | public function setLimitNICESoft($LimitNICESoft) |
||
| 1708 | |||
| 1709 | /** |
||
| 1710 | * @return mixed |
||
| 1711 | */ |
||
| 1712 | public function getLimitNOFILE() |
||
| 1716 | |||
| 1717 | /** |
||
| 1718 | * @param mixed $LimitNOFILE |
||
| 1719 | * @return Service |
||
| 1720 | */ |
||
| 1721 | public function setLimitNOFILE($LimitNOFILE) |
||
| 1726 | |||
| 1727 | /** |
||
| 1728 | * @return mixed |
||
| 1729 | */ |
||
| 1730 | public function getLimitNOFILESoft() |
||
| 1734 | |||
| 1735 | /** |
||
| 1736 | * @param mixed $LimitNOFILESoft |
||
| 1737 | * @return Service |
||
| 1738 | */ |
||
| 1739 | public function setLimitNOFILESoft($LimitNOFILESoft) |
||
| 1744 | |||
| 1745 | /** |
||
| 1746 | * @return mixed |
||
| 1747 | */ |
||
| 1748 | public function getLimitNPROC() |
||
| 1752 | |||
| 1753 | /** |
||
| 1754 | * @param mixed $LimitNPROC |
||
| 1755 | * @return Service |
||
| 1756 | */ |
||
| 1757 | public function setLimitNPROC($LimitNPROC) |
||
| 1762 | |||
| 1763 | /** |
||
| 1764 | * @return mixed |
||
| 1765 | */ |
||
| 1766 | public function getLimitNPROCSoft() |
||
| 1770 | |||
| 1771 | /** |
||
| 1772 | * @param mixed $LimitNPROCSoft |
||
| 1773 | * @return Service |
||
| 1774 | */ |
||
| 1775 | public function setLimitNPROCSoft($LimitNPROCSoft) |
||
| 1780 | |||
| 1781 | /** |
||
| 1782 | * @return mixed |
||
| 1783 | */ |
||
| 1784 | public function getLimitRSS() |
||
| 1788 | |||
| 1789 | /** |
||
| 1790 | * @param mixed $LimitRSS |
||
| 1791 | * @return Service |
||
| 1792 | */ |
||
| 1793 | public function setLimitRSS($LimitRSS) |
||
| 1798 | |||
| 1799 | /** |
||
| 1800 | * @return mixed |
||
| 1801 | */ |
||
| 1802 | public function getLimitRSSSoft() |
||
| 1806 | |||
| 1807 | /** |
||
| 1808 | * @param mixed $LimitRSSSoft |
||
| 1809 | * @return Service |
||
| 1810 | */ |
||
| 1811 | public function setLimitRSSSoft($LimitRSSSoft) |
||
| 1816 | |||
| 1817 | /** |
||
| 1818 | * @return mixed |
||
| 1819 | */ |
||
| 1820 | public function getLimitRTPRIO() |
||
| 1824 | |||
| 1825 | /** |
||
| 1826 | * @param mixed $LimitRTPRIO |
||
| 1827 | * @return Service |
||
| 1828 | */ |
||
| 1829 | public function setLimitRTPRIO($LimitRTPRIO) |
||
| 1834 | |||
| 1835 | /** |
||
| 1836 | * @return mixed |
||
| 1837 | */ |
||
| 1838 | public function getLimitRTPRIOSoft() |
||
| 1842 | |||
| 1843 | /** |
||
| 1844 | * @param mixed $LimitRTPRIOSoft |
||
| 1845 | * @return Service |
||
| 1846 | */ |
||
| 1847 | public function setLimitRTPRIOSoft($LimitRTPRIOSoft) |
||
| 1852 | |||
| 1853 | /** |
||
| 1854 | * @return mixed |
||
| 1855 | */ |
||
| 1856 | public function getLimitRTTIME() |
||
| 1860 | |||
| 1861 | /** |
||
| 1862 | * @param mixed $LimitRTTIME |
||
| 1863 | * @return Service |
||
| 1864 | */ |
||
| 1865 | public function setLimitRTTIME($LimitRTTIME) |
||
| 1870 | |||
| 1871 | /** |
||
| 1872 | * @return mixed |
||
| 1873 | */ |
||
| 1874 | public function getLimitRTTIMESoft() |
||
| 1878 | |||
| 1879 | /** |
||
| 1880 | * @param mixed $LimitRTTIMESoft |
||
| 1881 | * @return Service |
||
| 1882 | */ |
||
| 1883 | public function setLimitRTTIMESoft($LimitRTTIMESoft) |
||
| 1888 | |||
| 1889 | /** |
||
| 1890 | * @return mixed |
||
| 1891 | */ |
||
| 1892 | public function getLimitSIGPENDING() |
||
| 1896 | |||
| 1897 | /** |
||
| 1898 | * @param mixed $LimitSIGPENDING |
||
| 1899 | * @return Service |
||
| 1900 | */ |
||
| 1901 | public function setLimitSIGPENDING($LimitSIGPENDING) |
||
| 1906 | |||
| 1907 | /** |
||
| 1908 | * @return mixed |
||
| 1909 | */ |
||
| 1910 | public function getLimitSIGPENDINGSoft() |
||
| 1914 | |||
| 1915 | /** |
||
| 1916 | * @param mixed $LimitSIGPENDINGSoft |
||
| 1917 | * @return Service |
||
| 1918 | */ |
||
| 1919 | public function setLimitSIGPENDINGSoft($LimitSIGPENDINGSoft) |
||
| 1924 | |||
| 1925 | /** |
||
| 1926 | * @return mixed |
||
| 1927 | */ |
||
| 1928 | public function getLimitSTACK() |
||
| 1932 | |||
| 1933 | /** |
||
| 1934 | * @param mixed $LimitSTACK |
||
| 1935 | * @return Service |
||
| 1936 | */ |
||
| 1937 | public function setLimitSTACK($LimitSTACK) |
||
| 1942 | |||
| 1943 | /** |
||
| 1944 | * @return mixed |
||
| 1945 | */ |
||
| 1946 | public function getLimitSTACKSoft() |
||
| 1950 | |||
| 1951 | /** |
||
| 1952 | * @param mixed $LimitSTACKSoft |
||
| 1953 | * @return Service |
||
| 1954 | */ |
||
| 1955 | public function setLimitSTACKSoft($LimitSTACKSoft) |
||
| 1960 | |||
| 1961 | /** |
||
| 1962 | * @return mixed |
||
| 1963 | */ |
||
| 1964 | public function getMainPID() |
||
| 1968 | |||
| 1969 | /** |
||
| 1970 | * @param mixed $MainPID |
||
| 1971 | * @return Service |
||
| 1972 | */ |
||
| 1973 | public function setMainPID($MainPID) |
||
| 1978 | |||
| 1979 | /** |
||
| 1980 | * @return mixed |
||
| 1981 | */ |
||
| 1982 | public function getMemoryAccounting() |
||
| 1986 | |||
| 1987 | /** |
||
| 1988 | * @param mixed $MemoryAccounting |
||
| 1989 | * @return Service |
||
| 1990 | */ |
||
| 1991 | public function setMemoryAccounting($MemoryAccounting) |
||
| 1996 | |||
| 1997 | /** |
||
| 1998 | * @return mixed |
||
| 1999 | */ |
||
| 2000 | public function getMemoryCurrent() |
||
| 2004 | |||
| 2005 | /** |
||
| 2006 | * @param mixed $MemoryCurrent |
||
| 2007 | * @return Service |
||
| 2008 | */ |
||
| 2009 | public function setMemoryCurrent($MemoryCurrent) |
||
| 2014 | |||
| 2015 | /** |
||
| 2016 | * @return mixed |
||
| 2017 | */ |
||
| 2018 | public function getMemoryDenyWriteExecute() |
||
| 2022 | |||
| 2023 | /** |
||
| 2024 | * @param mixed $MemoryDenyWriteExecute |
||
| 2025 | * @return Service |
||
| 2026 | */ |
||
| 2027 | public function setMemoryDenyWriteExecute($MemoryDenyWriteExecute) |
||
| 2032 | |||
| 2033 | /** |
||
| 2034 | * @return mixed |
||
| 2035 | */ |
||
| 2036 | public function getMemoryHigh() |
||
| 2040 | |||
| 2041 | /** |
||
| 2042 | * @param mixed $MemoryHigh |
||
| 2043 | * @return Service |
||
| 2044 | */ |
||
| 2045 | public function setMemoryHigh($MemoryHigh) |
||
| 2050 | |||
| 2051 | /** |
||
| 2052 | * @return mixed |
||
| 2053 | */ |
||
| 2054 | public function getMemoryLimit() |
||
| 2058 | |||
| 2059 | /** |
||
| 2060 | * @param mixed $MemoryLimit |
||
| 2061 | * @return Service |
||
| 2062 | */ |
||
| 2063 | public function setMemoryLimit($MemoryLimit) |
||
| 2068 | |||
| 2069 | /** |
||
| 2070 | * @return mixed |
||
| 2071 | */ |
||
| 2072 | public function getMemoryLow() |
||
| 2076 | |||
| 2077 | /** |
||
| 2078 | * @param mixed $MemoryLow |
||
| 2079 | * @return Service |
||
| 2080 | */ |
||
| 2081 | public function setMemoryLow($MemoryLow) |
||
| 2086 | |||
| 2087 | /** |
||
| 2088 | * @return mixed |
||
| 2089 | */ |
||
| 2090 | public function getMemoryMax() |
||
| 2094 | |||
| 2095 | /** |
||
| 2096 | * @param mixed $MemoryMax |
||
| 2097 | * @return Service |
||
| 2098 | */ |
||
| 2099 | public function setMemoryMax($MemoryMax) |
||
| 2104 | |||
| 2105 | /** |
||
| 2106 | * @return mixed |
||
| 2107 | */ |
||
| 2108 | public function getMemorySwapMax() |
||
| 2112 | |||
| 2113 | /** |
||
| 2114 | * @param mixed $MemorySwapMax |
||
| 2115 | * @return Service |
||
| 2116 | */ |
||
| 2117 | public function setMemorySwapMax($MemorySwapMax) |
||
| 2122 | |||
| 2123 | /** |
||
| 2124 | * @return mixed |
||
| 2125 | */ |
||
| 2126 | public function getMountFlags() |
||
| 2130 | |||
| 2131 | /** |
||
| 2132 | * @param mixed $MountFlags |
||
| 2133 | * @return Service |
||
| 2134 | */ |
||
| 2135 | public function setMountFlags($MountFlags) |
||
| 2140 | |||
| 2141 | /** |
||
| 2142 | * @return mixed |
||
| 2143 | */ |
||
| 2144 | public function getNFileDescriptorStore() |
||
| 2148 | |||
| 2149 | /** |
||
| 2150 | * @param mixed $NFileDescriptorStore |
||
| 2151 | * @return Service |
||
| 2152 | */ |
||
| 2153 | public function setNFileDescriptorStore($NFileDescriptorStore) |
||
| 2158 | |||
| 2159 | /** |
||
| 2160 | * @return mixed |
||
| 2161 | */ |
||
| 2162 | public function getNice() |
||
| 2166 | |||
| 2167 | /** |
||
| 2168 | * @param mixed $Nice |
||
| 2169 | * @return Service |
||
| 2170 | */ |
||
| 2171 | public function setNice($Nice) |
||
| 2176 | |||
| 2177 | /** |
||
| 2178 | * @return mixed |
||
| 2179 | */ |
||
| 2180 | public function getNoNewPrivileges() |
||
| 2184 | |||
| 2185 | /** |
||
| 2186 | * @param mixed $NoNewPrivileges |
||
| 2187 | * @return Service |
||
| 2188 | */ |
||
| 2189 | public function setNoNewPrivileges($NoNewPrivileges) |
||
| 2194 | |||
| 2195 | /** |
||
| 2196 | * @return mixed |
||
| 2197 | */ |
||
| 2198 | public function getNonBlocking() |
||
| 2202 | |||
| 2203 | /** |
||
| 2204 | * @param mixed $NonBlocking |
||
| 2205 | * @return Service |
||
| 2206 | */ |
||
| 2207 | public function setNonBlocking($NonBlocking) |
||
| 2212 | |||
| 2213 | /** |
||
| 2214 | * @return mixed |
||
| 2215 | */ |
||
| 2216 | public function getNotifyAccess() |
||
| 2220 | |||
| 2221 | /** |
||
| 2222 | * @param mixed $NotifyAccess |
||
| 2223 | * @return Service |
||
| 2224 | */ |
||
| 2225 | public function setNotifyAccess($NotifyAccess) |
||
| 2230 | |||
| 2231 | /** |
||
| 2232 | * @return mixed |
||
| 2233 | */ |
||
| 2234 | public function getOOMScoreAdjust() |
||
| 2238 | |||
| 2239 | /** |
||
| 2240 | * @param mixed $OOMScoreAdjust |
||
| 2241 | * @return Service |
||
| 2242 | */ |
||
| 2243 | public function setOOMScoreAdjust($OOMScoreAdjust) |
||
| 2248 | |||
| 2249 | /** |
||
| 2250 | * @return mixed |
||
| 2251 | */ |
||
| 2252 | public function getPAMName() |
||
| 2256 | |||
| 2257 | /** |
||
| 2258 | * @param mixed $PAMName |
||
| 2259 | * @return Service |
||
| 2260 | */ |
||
| 2261 | public function setPAMName($PAMName) |
||
| 2266 | |||
| 2267 | /** |
||
| 2268 | * @return mixed |
||
| 2269 | */ |
||
| 2270 | public function getPartOf() |
||
| 2274 | |||
| 2275 | /** |
||
| 2276 | * @param mixed $PartOf |
||
| 2277 | * @return Service |
||
| 2278 | */ |
||
| 2279 | public function setPartOf($PartOf) |
||
| 2284 | |||
| 2285 | /** |
||
| 2286 | * @return mixed |
||
| 2287 | */ |
||
| 2288 | public function getPIDFile() |
||
| 2292 | |||
| 2293 | /** |
||
| 2294 | * @param mixed $PIDFile |
||
| 2295 | * @return Service |
||
| 2296 | */ |
||
| 2297 | public function setPIDFile($PIDFile) |
||
| 2302 | |||
| 2303 | /** |
||
| 2304 | * @return mixed |
||
| 2305 | */ |
||
| 2306 | public function getPermissionsStartOnly() |
||
| 2310 | |||
| 2311 | /** |
||
| 2312 | * @param mixed $PermissionsStartOnly |
||
| 2313 | * @return Service |
||
| 2314 | */ |
||
| 2315 | public function setPermissionsStartOnly($PermissionsStartOnly) |
||
| 2320 | |||
| 2321 | /** |
||
| 2322 | * @return mixed |
||
| 2323 | */ |
||
| 2324 | public function getPrivateDevices() |
||
| 2328 | |||
| 2329 | /** |
||
| 2330 | * @param mixed $PrivateDevices |
||
| 2331 | * @return Service |
||
| 2332 | */ |
||
| 2333 | public function setPrivateDevices($PrivateDevices) |
||
| 2338 | |||
| 2339 | /** |
||
| 2340 | * @return mixed |
||
| 2341 | */ |
||
| 2342 | public function getPrivateNetwork() |
||
| 2346 | |||
| 2347 | /** |
||
| 2348 | * @param mixed $PrivateNetwork |
||
| 2349 | * @return Service |
||
| 2350 | */ |
||
| 2351 | public function setPrivateNetwork($PrivateNetwork) |
||
| 2356 | |||
| 2357 | /** |
||
| 2358 | * @return mixed |
||
| 2359 | */ |
||
| 2360 | public function getPrivateTmp() |
||
| 2364 | |||
| 2365 | /** |
||
| 2366 | * @param mixed $PrivateTmp |
||
| 2367 | * @return Service |
||
| 2368 | */ |
||
| 2369 | public function setPrivateTmp($PrivateTmp) |
||
| 2374 | |||
| 2375 | /** |
||
| 2376 | * @return mixed |
||
| 2377 | */ |
||
| 2378 | public function getPrivateUsers() |
||
| 2382 | |||
| 2383 | /** |
||
| 2384 | * @param mixed $PrivateUsers |
||
| 2385 | * @return Service |
||
| 2386 | */ |
||
| 2387 | public function setPrivateUsers($PrivateUsers) |
||
| 2392 | |||
| 2393 | /** |
||
| 2394 | * @return mixed |
||
| 2395 | */ |
||
| 2396 | public function getPropagatesReloadTo() |
||
| 2400 | |||
| 2401 | /** |
||
| 2402 | * @param mixed $PropagatesReloadTo |
||
| 2403 | * @return Service |
||
| 2404 | */ |
||
| 2405 | public function setPropagatesReloadTo($PropagatesReloadTo) |
||
| 2410 | |||
| 2411 | /** |
||
| 2412 | * @return mixed |
||
| 2413 | */ |
||
| 2414 | public function getProtectControlGroups() |
||
| 2418 | |||
| 2419 | /** |
||
| 2420 | * @param mixed $ProtectControlGroups |
||
| 2421 | * @return Service |
||
| 2422 | */ |
||
| 2423 | public function setProtectControlGroups($ProtectControlGroups) |
||
| 2428 | |||
| 2429 | /** |
||
| 2430 | * @return mixed |
||
| 2431 | */ |
||
| 2432 | public function getProtectHome() |
||
| 2436 | |||
| 2437 | /** |
||
| 2438 | * @param mixed $ProtectHome |
||
| 2439 | * @return Service |
||
| 2440 | */ |
||
| 2441 | public function setProtectHome($ProtectHome) |
||
| 2446 | |||
| 2447 | /** |
||
| 2448 | * @return mixed |
||
| 2449 | */ |
||
| 2450 | public function getProtectKernelModules() |
||
| 2454 | |||
| 2455 | /** |
||
| 2456 | * @param mixed $ProtectKernelModules |
||
| 2457 | * @return Service |
||
| 2458 | */ |
||
| 2459 | public function setProtectKernelModules($ProtectKernelModules) |
||
| 2464 | |||
| 2465 | /** |
||
| 2466 | * @return mixed |
||
| 2467 | */ |
||
| 2468 | public function getProtectKernelTunables() |
||
| 2472 | |||
| 2473 | /** |
||
| 2474 | * @param mixed $ProtectKernelTunables |
||
| 2475 | * @return Service |
||
| 2476 | */ |
||
| 2477 | public function setProtectKernelTunables($ProtectKernelTunables) |
||
| 2482 | |||
| 2483 | /** |
||
| 2484 | * @return mixed |
||
| 2485 | */ |
||
| 2486 | public function getProtectSystem() |
||
| 2490 | |||
| 2491 | /** |
||
| 2492 | * @param mixed $ProtectSystem |
||
| 2493 | * @return Service |
||
| 2494 | */ |
||
| 2495 | public function setProtectSystem($ProtectSystem) |
||
| 2500 | |||
| 2501 | /** |
||
| 2502 | * @return array |
||
| 2503 | */ |
||
| 2504 | public function getReadOnlyPaths(): array |
||
| 2508 | |||
| 2509 | /** |
||
| 2510 | * @param array $ReadOnlyPaths |
||
| 2511 | * @return Service |
||
| 2512 | */ |
||
| 2513 | public function setReadOnlyPaths(array $ReadOnlyPaths): Service |
||
| 2518 | |||
| 2519 | /** |
||
| 2520 | * @return array |
||
| 2521 | */ |
||
| 2522 | public function getReadWritePaths(): array |
||
| 2526 | |||
| 2527 | /** |
||
| 2528 | * @param array $ReadWritePaths |
||
| 2529 | * @return Service |
||
| 2530 | */ |
||
| 2531 | public function setReadWritePaths(array $ReadWritePaths): Service |
||
| 2536 | |||
| 2537 | /** |
||
| 2538 | * @return mixed |
||
| 2539 | */ |
||
| 2540 | public function getReloadPropagatedFrom() |
||
| 2544 | |||
| 2545 | /** |
||
| 2546 | * @param mixed $ReloadPropagatedFrom |
||
| 2547 | * @return Service |
||
| 2548 | */ |
||
| 2549 | public function setReloadPropagatedFrom($ReloadPropagatedFrom) |
||
| 2554 | |||
| 2555 | /** |
||
| 2556 | * @return mixed |
||
| 2557 | */ |
||
| 2558 | public function getRemainAfterExit() |
||
| 2562 | |||
| 2563 | /** |
||
| 2564 | * @param mixed $RemainAfterExit |
||
| 2565 | * @return Service |
||
| 2566 | */ |
||
| 2567 | public function setRemainAfterExit($RemainAfterExit) |
||
| 2572 | |||
| 2573 | /** |
||
| 2574 | * @return mixed |
||
| 2575 | */ |
||
| 2576 | public function getRemoveIPC() |
||
| 2580 | |||
| 2581 | /** |
||
| 2582 | * @param mixed $RemoveIPC |
||
| 2583 | * @return Service |
||
| 2584 | */ |
||
| 2585 | public function setRemoveIPC($RemoveIPC) |
||
| 2590 | |||
| 2591 | /** |
||
| 2592 | * @return array |
||
| 2593 | */ |
||
| 2594 | public function getRequiredBy(): array |
||
| 2598 | |||
| 2599 | /** |
||
| 2600 | * @param array $RequiredBy |
||
| 2601 | * @return Service |
||
| 2602 | */ |
||
| 2603 | public function setRequiredBy(array $RequiredBy): Service |
||
| 2608 | |||
| 2609 | /** |
||
| 2610 | * @return array |
||
| 2611 | */ |
||
| 2612 | public function getRequiredByOverridable(): array |
||
| 2616 | |||
| 2617 | /** |
||
| 2618 | * @param array $RequiredByOverridable |
||
| 2619 | * @return Service |
||
| 2620 | */ |
||
| 2621 | public function setRequiredByOverridable(array $RequiredByOverridable): Service |
||
| 2626 | |||
| 2627 | /** |
||
| 2628 | * @return array |
||
| 2629 | */ |
||
| 2630 | public function getRequires(): array |
||
| 2634 | |||
| 2635 | /** |
||
| 2636 | * @param array $Requires |
||
| 2637 | * @return Service |
||
| 2638 | */ |
||
| 2639 | public function setRequires(array $Requires): Service |
||
| 2644 | |||
| 2645 | /** |
||
| 2646 | * @return array |
||
| 2647 | */ |
||
| 2648 | public function getRequiresMountsFor(): array |
||
| 2652 | |||
| 2653 | /** |
||
| 2654 | * @param array $RequiresMountsFor |
||
| 2655 | * @return Service |
||
| 2656 | */ |
||
| 2657 | public function setRequiresMountsFor(array $RequiresMountsFor): Service |
||
| 2662 | |||
| 2663 | /** |
||
| 2664 | * @return mixed |
||
| 2665 | */ |
||
| 2666 | public function getRequisite() |
||
| 2670 | |||
| 2671 | /** |
||
| 2672 | * @param mixed $Requisite |
||
| 2673 | * @return Service |
||
| 2674 | */ |
||
| 2675 | public function setRequisite($Requisite) |
||
| 2680 | |||
| 2681 | /** |
||
| 2682 | * @return mixed |
||
| 2683 | */ |
||
| 2684 | public function getRequisiteOf() |
||
| 2688 | |||
| 2689 | /** |
||
| 2690 | * @param mixed $RequisiteOf |
||
| 2691 | * @return Service |
||
| 2692 | */ |
||
| 2693 | public function setRequisiteOf($RequisiteOf) |
||
| 2698 | |||
| 2699 | /** |
||
| 2700 | * @return mixed |
||
| 2701 | */ |
||
| 2702 | public function getRestart() |
||
| 2706 | |||
| 2707 | /** |
||
| 2708 | * @param mixed $Restart |
||
| 2709 | * @return Service |
||
| 2710 | */ |
||
| 2711 | public function setRestart($Restart) |
||
| 2716 | |||
| 2717 | /** |
||
| 2718 | * @return mixed |
||
| 2719 | */ |
||
| 2720 | public function getRestartUSec() |
||
| 2724 | |||
| 2725 | /** |
||
| 2726 | * @param mixed $RestartUSec |
||
| 2727 | * @return Service |
||
| 2728 | */ |
||
| 2729 | public function setRestartUSec($RestartUSec) |
||
| 2734 | |||
| 2735 | /** |
||
| 2736 | * @return mixed |
||
| 2737 | */ |
||
| 2738 | public function getRestrictNamespace() |
||
| 2742 | |||
| 2743 | /** |
||
| 2744 | * @param mixed $RestrictNamespace |
||
| 2745 | * @return Service |
||
| 2746 | */ |
||
| 2747 | public function setRestrictNamespace($RestrictNamespace) |
||
| 2752 | |||
| 2753 | /** |
||
| 2754 | * @return mixed |
||
| 2755 | */ |
||
| 2756 | public function getRestrictRealtime() |
||
| 2760 | |||
| 2761 | /** |
||
| 2762 | * @param mixed $RestrictRealtime |
||
| 2763 | * @return Service |
||
| 2764 | */ |
||
| 2765 | public function setRestrictRealtime($RestrictRealtime) |
||
| 2770 | |||
| 2771 | /** |
||
| 2772 | * @return mixed |
||
| 2773 | */ |
||
| 2774 | public function getResult() |
||
| 2778 | |||
| 2779 | /** |
||
| 2780 | * @param mixed $Result |
||
| 2781 | * @return Service |
||
| 2782 | */ |
||
| 2783 | public function setResult($Result) |
||
| 2788 | |||
| 2789 | /** |
||
| 2790 | * @return mixed |
||
| 2791 | */ |
||
| 2792 | public function getRootDirectoryStartOnly() |
||
| 2796 | |||
| 2797 | /** |
||
| 2798 | * @param mixed $RootDirectoryStartOnly |
||
| 2799 | * @return Service |
||
| 2800 | */ |
||
| 2801 | public function setRootDirectoryStartOnly($RootDirectoryStartOnly) |
||
| 2806 | |||
| 2807 | /** |
||
| 2808 | * @return mixed |
||
| 2809 | */ |
||
| 2810 | public function getRuntimeDirectory() |
||
| 2814 | |||
| 2815 | /** |
||
| 2816 | * @param mixed $RuntimeDirectory |
||
| 2817 | * @return Service |
||
| 2818 | */ |
||
| 2819 | public function setRuntimeDirectory($RuntimeDirectory) |
||
| 2824 | |||
| 2825 | /** |
||
| 2826 | * @return mixed |
||
| 2827 | */ |
||
| 2828 | public function getRuntimeDirectoryMode() |
||
| 2832 | |||
| 2833 | /** |
||
| 2834 | * @param mixed $RuntimeDirectoryMode |
||
| 2835 | * @return Service |
||
| 2836 | */ |
||
| 2837 | public function setRuntimeDirectoryMode($RuntimeDirectoryMode) |
||
| 2842 | |||
| 2843 | /** |
||
| 2844 | * @return mixed |
||
| 2845 | */ |
||
| 2846 | public function getRuntimeMaxUSec() |
||
| 2850 | |||
| 2851 | /** |
||
| 2852 | * @param mixed $RuntimeMaxUSec |
||
| 2853 | * @return Service |
||
| 2854 | */ |
||
| 2855 | public function setRuntimeMaxUSec($RuntimeMaxUSec) |
||
| 2860 | |||
| 2861 | /** |
||
| 2862 | * @return mixed |
||
| 2863 | */ |
||
| 2864 | public function getSameProcessGroup() |
||
| 2868 | |||
| 2869 | /** |
||
| 2870 | * @param mixed $SameProcessGroup |
||
| 2871 | * @return Service |
||
| 2872 | */ |
||
| 2873 | public function setSameProcessGroup($SameProcessGroup) |
||
| 2878 | |||
| 2879 | /** |
||
| 2880 | * @return mixed |
||
| 2881 | */ |
||
| 2882 | public function getSecureBits() |
||
| 2886 | |||
| 2887 | /** |
||
| 2888 | * @param mixed $SecureBits |
||
| 2889 | * @return Service |
||
| 2890 | */ |
||
| 2891 | public function setSecureBits($SecureBits) |
||
| 2896 | |||
| 2897 | /** |
||
| 2898 | * @return mixed |
||
| 2899 | */ |
||
| 2900 | public function getSendSIGHUP() |
||
| 2904 | |||
| 2905 | /** |
||
| 2906 | * @param mixed $SendSIGHUP |
||
| 2907 | * @return Service |
||
| 2908 | */ |
||
| 2909 | public function setSendSIGHUP($SendSIGHUP) |
||
| 2914 | |||
| 2915 | /** |
||
| 2916 | * @return mixed |
||
| 2917 | */ |
||
| 2918 | public function getSendSIGKILL() |
||
| 2922 | |||
| 2923 | /** |
||
| 2924 | * @param mixed $SendSIGKILL |
||
| 2925 | * @return Service |
||
| 2926 | */ |
||
| 2927 | public function setSendSIGKILL($SendSIGKILL) |
||
| 2932 | |||
| 2933 | /** |
||
| 2934 | * @return mixed |
||
| 2935 | */ |
||
| 2936 | public function getSlice() |
||
| 2940 | |||
| 2941 | /** |
||
| 2942 | * @param mixed $Slice |
||
| 2943 | * @return Service |
||
| 2944 | */ |
||
| 2945 | public function setSlice($Slice) |
||
| 2950 | |||
| 2951 | /** |
||
| 2952 | * @return mixed |
||
| 2953 | */ |
||
| 2954 | public function getSourcePath() |
||
| 2958 | |||
| 2959 | /** |
||
| 2960 | * @param mixed $SourcePath |
||
| 2961 | * @return Service |
||
| 2962 | */ |
||
| 2963 | public function setSourcePath($SourcePath) |
||
| 2968 | |||
| 2969 | /** |
||
| 2970 | * @return mixed |
||
| 2971 | */ |
||
| 2972 | public function getStandardError() |
||
| 2976 | |||
| 2977 | /** |
||
| 2978 | * @param mixed $StandardError |
||
| 2979 | * @return Service |
||
| 2980 | */ |
||
| 2981 | public function setStandardError($StandardError) |
||
| 2986 | |||
| 2987 | /** |
||
| 2988 | * @return mixed |
||
| 2989 | */ |
||
| 2990 | public function getStandardInput() |
||
| 2994 | |||
| 2995 | /** |
||
| 2996 | * @param mixed $StandardInput |
||
| 2997 | * @return Service |
||
| 2998 | */ |
||
| 2999 | public function setStandardInput($StandardInput) |
||
| 3004 | |||
| 3005 | /** |
||
| 3006 | * @return mixed |
||
| 3007 | */ |
||
| 3008 | public function getStandardOutput() |
||
| 3012 | |||
| 3013 | /** |
||
| 3014 | * @param mixed $StandardOutput |
||
| 3015 | * @return Service |
||
| 3016 | */ |
||
| 3017 | public function setStandardOutput($StandardOutput) |
||
| 3022 | |||
| 3023 | /** |
||
| 3024 | * @return mixed |
||
| 3025 | */ |
||
| 3026 | public function getStartupBlockIOWeight() |
||
| 3030 | |||
| 3031 | /** |
||
| 3032 | * @param mixed $StartupBlockIOWeight |
||
| 3033 | * @return Service |
||
| 3034 | */ |
||
| 3035 | public function setStartupBlockIOWeight($StartupBlockIOWeight) |
||
| 3040 | |||
| 3041 | /** |
||
| 3042 | * @return mixed |
||
| 3043 | */ |
||
| 3044 | public function getStartupCPUShares() |
||
| 3048 | |||
| 3049 | /** |
||
| 3050 | * @param mixed $StartupCPUShares |
||
| 3051 | * @return Service |
||
| 3052 | */ |
||
| 3053 | public function setStartupCPUShares($StartupCPUShares) |
||
| 3058 | |||
| 3059 | /** |
||
| 3060 | * @return mixed |
||
| 3061 | */ |
||
| 3062 | public function getStartupCPUWeight() |
||
| 3066 | |||
| 3067 | /** |
||
| 3068 | * @param mixed $StartupCPUWeight |
||
| 3069 | * @return Service |
||
| 3070 | */ |
||
| 3071 | public function setStartupCPUWeight($StartupCPUWeight) |
||
| 3076 | |||
| 3077 | /** |
||
| 3078 | * @return mixed |
||
| 3079 | */ |
||
| 3080 | public function getStartupIOWeight() |
||
| 3084 | |||
| 3085 | /** |
||
| 3086 | * @param mixed $StartupIOWeight |
||
| 3087 | * @return Service |
||
| 3088 | */ |
||
| 3089 | public function setStartupIOWeight($StartupIOWeight) |
||
| 3094 | |||
| 3095 | /** |
||
| 3096 | * @return mixed |
||
| 3097 | */ |
||
| 3098 | public function getStatusText() |
||
| 3102 | |||
| 3103 | /** |
||
| 3104 | * @param mixed $StatusText |
||
| 3105 | * @return Service |
||
| 3106 | */ |
||
| 3107 | public function setStatusText($StatusText) |
||
| 3112 | |||
| 3113 | /** |
||
| 3114 | * @return mixed |
||
| 3115 | */ |
||
| 3116 | public function getStatusErrno() |
||
| 3120 | |||
| 3121 | /** |
||
| 3122 | * @param mixed $StatusErrno |
||
| 3123 | * @return Service |
||
| 3124 | */ |
||
| 3125 | public function setStatusErrno($StatusErrno) |
||
| 3130 | |||
| 3131 | /** |
||
| 3132 | * @return mixed |
||
| 3133 | */ |
||
| 3134 | public function getSyslogFacility() |
||
| 3138 | |||
| 3139 | /** |
||
| 3140 | * @param mixed $SyslogFacility |
||
| 3141 | * @return Service |
||
| 3142 | */ |
||
| 3143 | public function setSyslogFacility($SyslogFacility) |
||
| 3148 | |||
| 3149 | /** |
||
| 3150 | * @return mixed |
||
| 3151 | */ |
||
| 3152 | public function getSyslogIdentifier() |
||
| 3156 | |||
| 3157 | /** |
||
| 3158 | * @param mixed $SyslogIdentifier |
||
| 3159 | * @return Service |
||
| 3160 | */ |
||
| 3161 | public function setSyslogIdentifier($SyslogIdentifier) |
||
| 3166 | |||
| 3167 | /** |
||
| 3168 | * @return mixed |
||
| 3169 | */ |
||
| 3170 | public function getSyslogLevel() |
||
| 3174 | |||
| 3175 | /** |
||
| 3176 | * @param mixed $SyslogLevel |
||
| 3177 | * @return Service |
||
| 3178 | */ |
||
| 3179 | public function setSyslogLevel($SyslogLevel) |
||
| 3184 | |||
| 3185 | /** |
||
| 3186 | * @return mixed |
||
| 3187 | */ |
||
| 3188 | public function getSyslogLevelPrefix() |
||
| 3192 | |||
| 3193 | /** |
||
| 3194 | * @param mixed $SyslogLevelPrefix |
||
| 3195 | * @return Service |
||
| 3196 | */ |
||
| 3197 | public function setSyslogLevelPrefix($SyslogLevelPrefix) |
||
| 3202 | |||
| 3203 | /** |
||
| 3204 | * @return mixed |
||
| 3205 | */ |
||
| 3206 | public function getSyslogPriority() |
||
| 3210 | |||
| 3211 | /** |
||
| 3212 | * @param mixed $SyslogPriority |
||
| 3213 | * @return Service |
||
| 3214 | */ |
||
| 3215 | public function setSyslogPriority($SyslogPriority) |
||
| 3220 | |||
| 3221 | /** |
||
| 3222 | * @return mixed |
||
| 3223 | */ |
||
| 3224 | public function getSystemCallErrorNumber() |
||
| 3228 | |||
| 3229 | /** |
||
| 3230 | * @param mixed $SystemCallErrorNumber |
||
| 3231 | * @return Service |
||
| 3232 | */ |
||
| 3233 | public function setSystemCallErrorNumber($SystemCallErrorNumber) |
||
| 3238 | |||
| 3239 | /** |
||
| 3240 | * @return mixed |
||
| 3241 | */ |
||
| 3242 | public function getSystemCallFilter() |
||
| 3246 | |||
| 3247 | /** |
||
| 3248 | * @param mixed $SystemCallFilter |
||
| 3249 | * @return Service |
||
| 3250 | */ |
||
| 3251 | public function setSystemCallFilter($SystemCallFilter) |
||
| 3256 | |||
| 3257 | /** |
||
| 3258 | * @return mixed |
||
| 3259 | */ |
||
| 3260 | public function getTTYPath() |
||
| 3264 | |||
| 3265 | /** |
||
| 3266 | * @param mixed $TTYPath |
||
| 3267 | * @return Service |
||
| 3268 | */ |
||
| 3269 | public function setTTYPath($TTYPath) |
||
| 3274 | |||
| 3275 | /** |
||
| 3276 | * @return mixed |
||
| 3277 | */ |
||
| 3278 | public function getTTYReset() |
||
| 3282 | |||
| 3283 | /** |
||
| 3284 | * @param mixed $TTYReset |
||
| 3285 | * @return Service |
||
| 3286 | */ |
||
| 3287 | public function setTTYReset($TTYReset) |
||
| 3292 | |||
| 3293 | /** |
||
| 3294 | * @return mixed |
||
| 3295 | */ |
||
| 3296 | public function getTTYVHangup() |
||
| 3300 | |||
| 3301 | /** |
||
| 3302 | * @param mixed $TTYVHangup |
||
| 3303 | * @return Service |
||
| 3304 | */ |
||
| 3305 | public function setTTYVHangup($TTYVHangup) |
||
| 3310 | |||
| 3311 | /** |
||
| 3312 | * @return mixed |
||
| 3313 | */ |
||
| 3314 | public function getTTYVTDisallocate() |
||
| 3318 | |||
| 3319 | /** |
||
| 3320 | * @param mixed $TTYVTDisallocate |
||
| 3321 | * @return Service |
||
| 3322 | */ |
||
| 3323 | public function setTTYVTDisallocate($TTYVTDisallocate) |
||
| 3328 | |||
| 3329 | /** |
||
| 3330 | * @return mixed |
||
| 3331 | */ |
||
| 3332 | public function getTasksAccounting() |
||
| 3336 | |||
| 3337 | /** |
||
| 3338 | * @param mixed $TasksAccounting |
||
| 3339 | * @return Service |
||
| 3340 | */ |
||
| 3341 | public function setTasksAccounting($TasksAccounting) |
||
| 3346 | |||
| 3347 | /** |
||
| 3348 | * @return mixed |
||
| 3349 | */ |
||
| 3350 | public function getTasksCurrent() |
||
| 3354 | |||
| 3355 | /** |
||
| 3356 | * @param mixed $TasksCurrent |
||
| 3357 | * @return Service |
||
| 3358 | */ |
||
| 3359 | public function setTasksCurrent($TasksCurrent) |
||
| 3364 | |||
| 3365 | /** |
||
| 3366 | * @return mixed |
||
| 3367 | */ |
||
| 3368 | public function getTasksMax() |
||
| 3372 | |||
| 3373 | /** |
||
| 3374 | * @param mixed $TasksMax |
||
| 3375 | * @return Service |
||
| 3376 | */ |
||
| 3377 | public function setTasksMax($TasksMax) |
||
| 3382 | |||
| 3383 | /** |
||
| 3384 | * @return mixed |
||
| 3385 | */ |
||
| 3386 | public function getTimeoutStartUSec() |
||
| 3390 | |||
| 3391 | /** |
||
| 3392 | * @param mixed $TimeoutStartUSec |
||
| 3393 | * @return Service |
||
| 3394 | */ |
||
| 3395 | public function setTimeoutStartUSec($TimeoutStartUSec) |
||
| 3400 | |||
| 3401 | /** |
||
| 3402 | * @return mixed |
||
| 3403 | */ |
||
| 3404 | public function getTimeoutStopUSec() |
||
| 3408 | |||
| 3409 | /** |
||
| 3410 | * @param mixed $TimeoutStopUSec |
||
| 3411 | * @return Service |
||
| 3412 | */ |
||
| 3413 | public function setTimeoutStopUSec($TimeoutStopUSec) |
||
| 3418 | |||
| 3419 | /** |
||
| 3420 | * @return mixed |
||
| 3421 | */ |
||
| 3422 | public function getTimerSlackNSec() |
||
| 3426 | |||
| 3427 | /** |
||
| 3428 | * @param mixed $TimerSlackNSec |
||
| 3429 | * @return Service |
||
| 3430 | */ |
||
| 3431 | public function setTimerSlackNSec($TimerSlackNSec) |
||
| 3436 | |||
| 3437 | /** |
||
| 3438 | * @return mixed |
||
| 3439 | */ |
||
| 3440 | public function getTriggeredBy() |
||
| 3444 | |||
| 3445 | /** |
||
| 3446 | * @param mixed $TriggeredBy |
||
| 3447 | * @return Service |
||
| 3448 | */ |
||
| 3449 | public function setTriggeredBy($TriggeredBy) |
||
| 3454 | |||
| 3455 | /** |
||
| 3456 | * @return mixed |
||
| 3457 | */ |
||
| 3458 | public function getType() |
||
| 3462 | |||
| 3463 | /** |
||
| 3464 | * @param mixed $Type |
||
| 3465 | * @return Service |
||
| 3466 | */ |
||
| 3467 | public function setType($Type) |
||
| 3472 | |||
| 3473 | /** |
||
| 3474 | * @return mixed |
||
| 3475 | */ |
||
| 3476 | public function getUID() |
||
| 3480 | |||
| 3481 | /** |
||
| 3482 | * @param mixed $UID |
||
| 3483 | * @return Service |
||
| 3484 | */ |
||
| 3485 | public function setUID($UID) |
||
| 3490 | |||
| 3491 | /** |
||
| 3492 | * @return mixed |
||
| 3493 | */ |
||
| 3494 | public function getUMask() |
||
| 3498 | |||
| 3499 | /** |
||
| 3500 | * @param mixed $UMask |
||
| 3501 | * @return Service |
||
| 3502 | */ |
||
| 3503 | public function setUMask($UMask) |
||
| 3508 | |||
| 3509 | /** |
||
| 3510 | * @return mixed |
||
| 3511 | */ |
||
| 3512 | public function getUnitFilePreset() |
||
| 3516 | |||
| 3517 | /** |
||
| 3518 | * @param mixed $UnitFilePreset |
||
| 3519 | * @return Service |
||
| 3520 | */ |
||
| 3521 | public function setUnitFilePreset($UnitFilePreset) |
||
| 3526 | |||
| 3527 | /** |
||
| 3528 | * @return mixed |
||
| 3529 | */ |
||
| 3530 | public function getUnitFileState() |
||
| 3534 | |||
| 3535 | /** |
||
| 3536 | * @param mixed $UnitFileState |
||
| 3537 | * @return Service |
||
| 3538 | */ |
||
| 3539 | public function setUnitFileState($UnitFileState) |
||
| 3544 | |||
| 3545 | /** |
||
| 3546 | * @return mixed |
||
| 3547 | */ |
||
| 3548 | public function getUser() |
||
| 3552 | |||
| 3553 | /** |
||
| 3554 | * @param mixed $User |
||
| 3555 | * @return Service |
||
| 3556 | */ |
||
| 3557 | public function setUser($User) |
||
| 3562 | |||
| 3563 | /** |
||
| 3564 | * @return mixed |
||
| 3565 | */ |
||
| 3566 | public function getUtmpIdentifier() |
||
| 3570 | |||
| 3571 | /** |
||
| 3572 | * @param mixed $UtmpIdentifier |
||
| 3573 | * @return Service |
||
| 3574 | */ |
||
| 3575 | public function setUtmpIdentifier($UtmpIdentifier) |
||
| 3580 | |||
| 3581 | /** |
||
| 3582 | * @return mixed |
||
| 3583 | */ |
||
| 3584 | public function getUtmpMode() |
||
| 3588 | |||
| 3589 | /** |
||
| 3590 | * @param mixed $UtmpMode |
||
| 3591 | * @return Service |
||
| 3592 | */ |
||
| 3593 | public function setUtmpMode($UtmpMode) |
||
| 3598 | |||
| 3599 | /** |
||
| 3600 | * @return array |
||
| 3601 | */ |
||
| 3602 | public function getWantedBy(): array |
||
| 3606 | |||
| 3607 | /** |
||
| 3608 | * @param array $WantedBy |
||
| 3609 | * @return Service |
||
| 3610 | */ |
||
| 3611 | public function setWantedBy(array $WantedBy): Service |
||
| 3616 | |||
| 3617 | /** |
||
| 3618 | * @return array |
||
| 3619 | */ |
||
| 3620 | public function getWants(): array |
||
| 3624 | |||
| 3625 | /** |
||
| 3626 | * @param array $Wants |
||
| 3627 | * @return Service |
||
| 3628 | */ |
||
| 3629 | public function setWants(array $Wants): Service |
||
| 3634 | |||
| 3635 | /** |
||
| 3636 | * @return mixed |
||
| 3637 | */ |
||
| 3638 | public function getWatchdogTimestamp() |
||
| 3642 | |||
| 3643 | /** |
||
| 3644 | * @param mixed $WatchdogTimestamp |
||
| 3645 | * @return Service |
||
| 3646 | */ |
||
| 3647 | public function setWatchdogTimestamp($WatchdogTimestamp) |
||
| 3652 | |||
| 3653 | /** |
||
| 3654 | * @return mixed |
||
| 3655 | */ |
||
| 3656 | public function getWatchdogTimestampMonotonic() |
||
| 3660 | |||
| 3661 | /** |
||
| 3662 | * @param mixed $WatchdogTimestampMonotonic |
||
| 3663 | * @return Service |
||
| 3664 | */ |
||
| 3665 | public function setWatchdogTimestampMonotonic($WatchdogTimestampMonotonic) |
||
| 3670 | |||
| 3671 | /** |
||
| 3672 | * @return mixed |
||
| 3673 | */ |
||
| 3674 | public function getWatchdogUSec() |
||
| 3678 | |||
| 3679 | /** |
||
| 3680 | * @param mixed $WatchdogUSec |
||
| 3681 | * @return Service |
||
| 3682 | */ |
||
| 3683 | public function setWatchdogUSec($WatchdogUSec) |
||
| 3688 | |||
| 3689 | /** |
||
| 3690 | * @return mixed |
||
| 3691 | */ |
||
| 3692 | public function getWorkingDirectory() |
||
| 3696 | |||
| 3697 | /** |
||
| 3698 | * @param mixed $WorkingDirectory |
||
| 3699 | * @return Service |
||
| 3700 | */ |
||
| 3701 | public function setWorkingDirectory($WorkingDirectory) |
||
| 3706 | } |
||
| 3707 |