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 $BusName; |
||
| 20 | |||
| 21 | protected $CPUAccounting; |
||
| 22 | |||
| 23 | protected $CPUQuotaPerSecUSec; |
||
| 24 | |||
| 25 | protected $CPUSchedulingPolicy; |
||
| 26 | |||
| 27 | protected $CPUSchedulingPriority; |
||
| 28 | |||
| 29 | protected $CPUSchedulingResetOnFork; |
||
| 30 | |||
| 31 | protected $CPUShares; |
||
| 32 | |||
| 33 | protected $CPUUsageNSec; |
||
| 34 | |||
| 35 | protected $CPUWeight; |
||
| 36 | |||
| 37 | protected $CapabilityBoundingSet; |
||
| 38 | |||
| 39 | protected $ConflictedBy = []; |
||
| 40 | |||
| 41 | protected $Conflicts = []; |
||
| 42 | |||
| 43 | protected $ConsistsOf; |
||
| 44 | |||
| 45 | protected $ControlGroup; |
||
| 46 | |||
| 47 | protected $ControlPID; |
||
| 48 | |||
| 49 | protected $Delegate; |
||
| 50 | |||
| 51 | protected $DevicePolicy; |
||
| 52 | |||
| 53 | protected $Documentation = []; |
||
| 54 | |||
| 55 | protected $DropInPaths = []; |
||
| 56 | |||
| 57 | protected $DynamicUser; |
||
| 58 | |||
| 59 | protected $Environment = []; |
||
| 60 | |||
| 61 | protected $EnvironmentFile; |
||
| 62 | |||
| 63 | protected $ExecMainCode; |
||
| 64 | |||
| 65 | protected $ExecMainExitTimestamp; |
||
| 66 | |||
| 67 | protected $ExecMainExitTimestampMonotonic; |
||
| 68 | |||
| 69 | protected $ExecMainPID; |
||
| 70 | |||
| 71 | protected $ExecMainStartTimestamp; |
||
| 72 | |||
| 73 | protected $ExecMainStartTimestampMonotonic; |
||
| 74 | |||
| 75 | protected $ExecMainStatus; |
||
| 76 | |||
| 77 | protected $ExecReload; |
||
| 78 | |||
| 79 | protected $ExecStart; |
||
| 80 | |||
| 81 | protected $ExecStartPost; |
||
| 82 | |||
| 83 | protected $ExecStartPre; |
||
| 84 | |||
| 85 | protected $ExecStop; |
||
| 86 | |||
| 87 | protected $ExecStopPost; |
||
| 88 | |||
| 89 | protected $FailureAction; |
||
| 90 | |||
| 91 | protected $FileDescriptorStoreMax; |
||
| 92 | |||
| 93 | protected $FragmentPath; |
||
| 94 | |||
| 95 | protected $GID; |
||
| 96 | |||
| 97 | protected $Group; |
||
| 98 | |||
| 99 | protected $GuessMainPID; |
||
| 100 | |||
| 101 | protected $IOAccounting; |
||
| 102 | |||
| 103 | protected $IOScheduling; |
||
| 104 | |||
| 105 | protected $IOWeight; |
||
| 106 | |||
| 107 | protected $IgnoreOnSnapshot; |
||
| 108 | |||
| 109 | protected $IgnoreSIGPIPE; |
||
| 110 | |||
| 111 | protected $InactiveEnterTimestamp; |
||
| 112 | |||
| 113 | protected $KillMode; |
||
| 114 | |||
| 115 | protected $KillSignal; |
||
| 116 | |||
| 117 | protected $LimitAS; |
||
| 118 | |||
| 119 | protected $LimitASSoft; |
||
| 120 | |||
| 121 | protected $LimitCORE; |
||
| 122 | |||
| 123 | protected $LimitCORESoft; |
||
| 124 | |||
| 125 | protected $LimitCPU; |
||
| 126 | |||
| 127 | protected $LimitCPUSoft; |
||
| 128 | |||
| 129 | protected $LimitDATA; |
||
| 130 | |||
| 131 | protected $LimitDATASoft; |
||
| 132 | |||
| 133 | protected $LimitFSIZE; |
||
| 134 | |||
| 135 | protected $LimitFSIZESoft; |
||
| 136 | |||
| 137 | protected $LimitLOCKS; |
||
| 138 | |||
| 139 | protected $LimitLOCKSSoft; |
||
| 140 | |||
| 141 | protected $LimitMEMLOCK; |
||
| 142 | |||
| 143 | protected $LimitMEMLOCKSoft; |
||
| 144 | |||
| 145 | protected $LimitMSGQUEUE; |
||
| 146 | |||
| 147 | protected $LimitMSGQUEUESoft; |
||
| 148 | |||
| 149 | protected $LimitNICE; |
||
| 150 | |||
| 151 | protected $LimitNICESoft; |
||
| 152 | |||
| 153 | protected $LimitNOFILE; |
||
| 154 | |||
| 155 | protected $LimitNOFILESoft; |
||
| 156 | |||
| 157 | protected $LimitNPROC; |
||
| 158 | |||
| 159 | protected $LimitNPROCSoft; |
||
| 160 | |||
| 161 | protected $LimitRSS; |
||
| 162 | |||
| 163 | protected $LimitRSSSoft; |
||
| 164 | |||
| 165 | protected $LimitRTPRIO; |
||
| 166 | |||
| 167 | protected $LimitRTPRIOSoft; |
||
| 168 | |||
| 169 | protected $LimitRTTIME; |
||
| 170 | |||
| 171 | protected $LimitRTTIMESoft; |
||
| 172 | |||
| 173 | protected $LimitSIGPENDING; |
||
| 174 | |||
| 175 | protected $LimitSIGPENDINGSoft; |
||
| 176 | |||
| 177 | protected $LimitSTACK; |
||
| 178 | |||
| 179 | protected $LimitSTACKSoft; |
||
| 180 | |||
| 181 | protected $MainPID; |
||
| 182 | |||
| 183 | protected $MemoryAccounting; |
||
| 184 | |||
| 185 | protected $MemoryCurrent; |
||
| 186 | |||
| 187 | protected $MemoryDenyWriteExecute; |
||
| 188 | |||
| 189 | protected $MemoryHigh; |
||
| 190 | |||
| 191 | protected $MemoryLimit; |
||
| 192 | |||
| 193 | protected $MemoryLow; |
||
| 194 | |||
| 195 | protected $MemoryMax; |
||
| 196 | |||
| 197 | protected $MemorySwapMax; |
||
| 198 | |||
| 199 | protected $MountFlags; |
||
| 200 | |||
| 201 | protected $NFileDescriptorStore; |
||
| 202 | |||
| 203 | protected $Nice; |
||
| 204 | |||
| 205 | protected $NoNewPrivileges; |
||
| 206 | |||
| 207 | protected $NonBlocking; |
||
| 208 | |||
| 209 | protected $NotifyAccess; |
||
| 210 | |||
| 211 | protected $OOMScoreAdjust; |
||
| 212 | |||
| 213 | protected $PAMName; |
||
| 214 | |||
| 215 | protected $PartOf; |
||
| 216 | |||
| 217 | protected $PIDFile; |
||
| 218 | |||
| 219 | protected $PermissionsStartOnly; |
||
| 220 | |||
| 221 | protected $PrivateDevices; |
||
| 222 | |||
| 223 | protected $PrivateNetwork; |
||
| 224 | |||
| 225 | protected $PrivateTmp; |
||
| 226 | |||
| 227 | protected $PrivateUsers; |
||
| 228 | |||
| 229 | protected $PropagatesReloadTo; |
||
| 230 | |||
| 231 | protected $ProtectControlGroups; |
||
| 232 | |||
| 233 | protected $ProtectHome; |
||
| 234 | |||
| 235 | protected $ProtectKernelModules; |
||
| 236 | |||
| 237 | protected $ProtectKernelTunables; |
||
| 238 | |||
| 239 | protected $ProtectSystem; |
||
| 240 | |||
| 241 | protected $ReadOnlyPaths = []; |
||
| 242 | |||
| 243 | protected $ReadWritePaths = []; |
||
| 244 | |||
| 245 | protected $ReloadPropagatedFrom; |
||
| 246 | |||
| 247 | protected $RemainAfterExit; |
||
| 248 | |||
| 249 | protected $RemoveIPC; |
||
| 250 | |||
| 251 | protected $RequiredBy = []; |
||
| 252 | |||
| 253 | protected $Requires = []; |
||
| 254 | |||
| 255 | protected $RequiresMountsFor = []; |
||
| 256 | |||
| 257 | protected $Requisite; |
||
| 258 | |||
| 259 | protected $RequisiteOf; |
||
| 260 | |||
| 261 | protected $Restart; |
||
| 262 | |||
| 263 | protected $RestartUSec; |
||
| 264 | |||
| 265 | protected $RestrictNamespace; |
||
| 266 | |||
| 267 | protected $RestrictRealtime; |
||
| 268 | |||
| 269 | protected $Result; |
||
| 270 | |||
| 271 | protected $RootDirectoryStartOnly; |
||
| 272 | |||
| 273 | protected $RuntimeDirectory; |
||
| 274 | |||
| 275 | protected $RuntimeDirectoryMode; |
||
| 276 | |||
| 277 | protected $RuntimeMaxUSec; |
||
| 278 | |||
| 279 | protected $SameProcessGroup; |
||
| 280 | |||
| 281 | protected $SecureBits; |
||
| 282 | |||
| 283 | protected $SendSIGHUP; |
||
| 284 | |||
| 285 | protected $SendSIGKILL; |
||
| 286 | |||
| 287 | protected $Slice; |
||
| 288 | |||
| 289 | protected $SourcePath; |
||
| 290 | |||
| 291 | protected $StandardError; |
||
| 292 | |||
| 293 | protected $StandardInput; |
||
| 294 | |||
| 295 | protected $StandardOutput; |
||
| 296 | |||
| 297 | protected $StartupBlockIOWeight; |
||
| 298 | |||
| 299 | protected $StartupCPUShares; |
||
| 300 | |||
| 301 | protected $StartupCPUWeight; |
||
| 302 | |||
| 303 | protected $StartupIOWeight; |
||
| 304 | |||
| 305 | protected $StatusText; |
||
| 306 | |||
| 307 | protected $StatusErrno; |
||
| 308 | |||
| 309 | protected $SyslogFacility; |
||
| 310 | |||
| 311 | protected $SyslogIdentifier; |
||
| 312 | |||
| 313 | protected $SyslogLevel; |
||
| 314 | |||
| 315 | protected $SyslogLevelPrefix; |
||
| 316 | |||
| 317 | protected $SyslogPriority; |
||
| 318 | |||
| 319 | protected $SystemCallErrorNumber; |
||
| 320 | |||
| 321 | protected $SystemCallFilter; |
||
| 322 | |||
| 323 | protected $TTYPath; |
||
| 324 | |||
| 325 | protected $TTYReset; |
||
| 326 | |||
| 327 | protected $TTYVHangup; |
||
| 328 | |||
| 329 | protected $TTYVTDisallocate; |
||
| 330 | |||
| 331 | protected $TasksAccounting; |
||
| 332 | |||
| 333 | protected $TasksCurrent; |
||
| 334 | |||
| 335 | protected $TasksMax; |
||
| 336 | |||
| 337 | protected $TimeoutStartUSec; |
||
| 338 | |||
| 339 | protected $TimeoutStopUSec; |
||
| 340 | |||
| 341 | protected $TimerSlackNSec; |
||
| 342 | |||
| 343 | protected $TriggeredBy; |
||
| 344 | |||
| 345 | protected $Type; |
||
| 346 | |||
| 347 | protected $UID; |
||
| 348 | |||
| 349 | protected $UMask; |
||
| 350 | |||
| 351 | protected $UnitFilePreset; |
||
| 352 | |||
| 353 | protected $UnitFileState; |
||
| 354 | |||
| 355 | protected $User; |
||
| 356 | |||
| 357 | protected $UtmpIdentifier; |
||
| 358 | |||
| 359 | protected $UtmpMode; |
||
| 360 | |||
| 361 | protected $WantedBy = []; |
||
| 362 | |||
| 363 | protected $Wants = []; |
||
| 364 | |||
| 365 | protected $WatchdogTimestamp; |
||
| 366 | |||
| 367 | protected $WatchdogTimestampMonotonic; |
||
| 368 | |||
| 369 | protected $WatchdogUSec; |
||
| 370 | |||
| 371 | protected $WorkingDirectory; |
||
| 372 | |||
| 373 | /** |
||
| 374 | * @return mixed |
||
| 375 | */ |
||
| 376 | public function getActiveExitTimestamp() |
||
| 380 | |||
| 381 | /** |
||
| 382 | * @param mixed $ActiveExitTimestamp |
||
| 383 | * @return Service |
||
| 384 | */ |
||
| 385 | public function setActiveExitTimestamp($ActiveExitTimestamp) |
||
| 390 | |||
| 391 | /** |
||
| 392 | * @return array |
||
| 393 | */ |
||
| 394 | public function getAfter(): array |
||
| 398 | |||
| 399 | /** |
||
| 400 | * @param array $After |
||
| 401 | * @return Service |
||
| 402 | */ |
||
| 403 | public function setAfter(array $After): Service |
||
| 408 | |||
| 409 | /** |
||
| 410 | * @return mixed |
||
| 411 | */ |
||
| 412 | public function getAmbientCapabilities() |
||
| 416 | |||
| 417 | /** |
||
| 418 | * @param mixed $AmbientCapabilities |
||
| 419 | * @return Service |
||
| 420 | */ |
||
| 421 | public function setAmbientCapabilities($AmbientCapabilities) |
||
| 426 | |||
| 427 | /** |
||
| 428 | * @return array |
||
| 429 | */ |
||
| 430 | public function getBindsTo(): array |
||
| 434 | |||
| 435 | /** |
||
| 436 | * @param array $BindsTo |
||
| 437 | * @return Service |
||
| 438 | */ |
||
| 439 | public function setBindsTo(array $BindsTo): Service |
||
| 444 | |||
| 445 | /** |
||
| 446 | * @return mixed |
||
| 447 | */ |
||
| 448 | public function getBlockIOAccounting() |
||
| 452 | |||
| 453 | /** |
||
| 454 | * @param mixed $BlockIOAccounting |
||
| 455 | * @return Service |
||
| 456 | */ |
||
| 457 | public function setBlockIOAccounting($BlockIOAccounting) |
||
| 462 | |||
| 463 | /** |
||
| 464 | * @return mixed |
||
| 465 | */ |
||
| 466 | public function getBlockIOWeight() |
||
| 470 | |||
| 471 | /** |
||
| 472 | * @param mixed $BlockIOWeight |
||
| 473 | * @return Service |
||
| 474 | */ |
||
| 475 | public function setBlockIOWeight($BlockIOWeight) |
||
| 480 | |||
| 481 | /** |
||
| 482 | * @return mixed |
||
| 483 | */ |
||
| 484 | public function getBusName() |
||
| 488 | |||
| 489 | /** |
||
| 490 | * @param mixed $BusName |
||
| 491 | * @return Service |
||
| 492 | */ |
||
| 493 | public function setBusName($BusName) |
||
| 498 | |||
| 499 | /** |
||
| 500 | * @return mixed |
||
| 501 | */ |
||
| 502 | public function getCPUAccounting() |
||
| 506 | |||
| 507 | /** |
||
| 508 | * @param mixed $CPUAccounting |
||
| 509 | * @return Service |
||
| 510 | */ |
||
| 511 | public function setCPUAccounting($CPUAccounting) |
||
| 516 | |||
| 517 | /** |
||
| 518 | * @return mixed |
||
| 519 | */ |
||
| 520 | public function getCPUQuotaPerSecUSec() |
||
| 524 | |||
| 525 | /** |
||
| 526 | * @param mixed $CPUQuotaPerSecUSec |
||
| 527 | * @return Service |
||
| 528 | */ |
||
| 529 | public function setCPUQuotaPerSecUSec($CPUQuotaPerSecUSec) |
||
| 534 | |||
| 535 | /** |
||
| 536 | * @return mixed |
||
| 537 | */ |
||
| 538 | public function getCPUSchedulingPolicy() |
||
| 542 | |||
| 543 | /** |
||
| 544 | * @param mixed $CPUSchedulingPolicy |
||
| 545 | * @return Service |
||
| 546 | */ |
||
| 547 | public function setCPUSchedulingPolicy($CPUSchedulingPolicy) |
||
| 552 | |||
| 553 | /** |
||
| 554 | * @return mixed |
||
| 555 | */ |
||
| 556 | public function getCPUSchedulingPriority() |
||
| 560 | |||
| 561 | /** |
||
| 562 | * @param mixed $CPUSchedulingPriority |
||
| 563 | * @return Service |
||
| 564 | */ |
||
| 565 | public function setCPUSchedulingPriority($CPUSchedulingPriority) |
||
| 570 | |||
| 571 | /** |
||
| 572 | * @return mixed |
||
| 573 | */ |
||
| 574 | public function getCPUSchedulingResetOnFork() |
||
| 578 | |||
| 579 | /** |
||
| 580 | * @param mixed $CPUSchedulingResetOnFork |
||
| 581 | * @return Service |
||
| 582 | */ |
||
| 583 | public function setCPUSchedulingResetOnFork($CPUSchedulingResetOnFork) |
||
| 588 | |||
| 589 | /** |
||
| 590 | * @return mixed |
||
| 591 | */ |
||
| 592 | public function getCPUShares() |
||
| 596 | |||
| 597 | /** |
||
| 598 | * @param mixed $CPUShares |
||
| 599 | * @return Service |
||
| 600 | */ |
||
| 601 | public function setCPUShares($CPUShares) |
||
| 606 | |||
| 607 | /** |
||
| 608 | * @return mixed |
||
| 609 | */ |
||
| 610 | public function getCPUUsageNSec() |
||
| 614 | |||
| 615 | /** |
||
| 616 | * @param mixed $CPUUsageNSec |
||
| 617 | * @return Service |
||
| 618 | */ |
||
| 619 | public function setCPUUsageNSec($CPUUsageNSec) |
||
| 624 | |||
| 625 | /** |
||
| 626 | * @return mixed |
||
| 627 | */ |
||
| 628 | public function getCPUWeight() |
||
| 632 | |||
| 633 | /** |
||
| 634 | * @param mixed $CPUWeight |
||
| 635 | * @return Service |
||
| 636 | */ |
||
| 637 | public function setCPUWeight($CPUWeight) |
||
| 642 | |||
| 643 | /** |
||
| 644 | * @return mixed |
||
| 645 | */ |
||
| 646 | public function getCapabilityBoundingSet() |
||
| 650 | |||
| 651 | /** |
||
| 652 | * @param mixed $CapabilityBoundingSet |
||
| 653 | * @return Service |
||
| 654 | */ |
||
| 655 | public function setCapabilityBoundingSet($CapabilityBoundingSet) |
||
| 660 | |||
| 661 | /** |
||
| 662 | * @return array |
||
| 663 | */ |
||
| 664 | public function getConflictedBy(): array |
||
| 668 | |||
| 669 | /** |
||
| 670 | * @param array $ConflictedBy |
||
| 671 | * @return Service |
||
| 672 | */ |
||
| 673 | public function setConflictedBy(array $ConflictedBy): Service |
||
| 678 | |||
| 679 | /** |
||
| 680 | * @return array |
||
| 681 | */ |
||
| 682 | public function getConflicts(): array |
||
| 686 | |||
| 687 | /** |
||
| 688 | * @param array $Conflicts |
||
| 689 | * @return Service |
||
| 690 | */ |
||
| 691 | public function setConflicts(array $Conflicts): Service |
||
| 696 | |||
| 697 | /** |
||
| 698 | * @return mixed |
||
| 699 | */ |
||
| 700 | public function getConsistsOf() |
||
| 704 | |||
| 705 | /** |
||
| 706 | * @param mixed $ConsistsOf |
||
| 707 | * @return Service |
||
| 708 | */ |
||
| 709 | public function setConsistsOf($ConsistsOf) |
||
| 714 | |||
| 715 | /** |
||
| 716 | * @return mixed |
||
| 717 | */ |
||
| 718 | public function getControlGroup() |
||
| 722 | |||
| 723 | /** |
||
| 724 | * @param mixed $ControlGroup |
||
| 725 | * @return Service |
||
| 726 | */ |
||
| 727 | public function setControlGroup($ControlGroup) |
||
| 732 | |||
| 733 | /** |
||
| 734 | * @return mixed |
||
| 735 | */ |
||
| 736 | public function getControlPID() |
||
| 740 | |||
| 741 | /** |
||
| 742 | * @param mixed $ControlPID |
||
| 743 | * @return Service |
||
| 744 | */ |
||
| 745 | public function setControlPID($ControlPID) |
||
| 750 | |||
| 751 | /** |
||
| 752 | * @return mixed |
||
| 753 | */ |
||
| 754 | public function getDelegate() |
||
| 758 | |||
| 759 | /** |
||
| 760 | * @param mixed $Delegate |
||
| 761 | * @return Service |
||
| 762 | */ |
||
| 763 | public function setDelegate($Delegate) |
||
| 768 | |||
| 769 | /** |
||
| 770 | * @return mixed |
||
| 771 | */ |
||
| 772 | public function getDevicePolicy() |
||
| 776 | |||
| 777 | /** |
||
| 778 | * @param mixed $DevicePolicy |
||
| 779 | * @return Service |
||
| 780 | */ |
||
| 781 | public function setDevicePolicy($DevicePolicy) |
||
| 786 | |||
| 787 | /** |
||
| 788 | * @return array |
||
| 789 | */ |
||
| 790 | public function getDocumentation(): array |
||
| 794 | |||
| 795 | /** |
||
| 796 | * @param array $Documentation |
||
| 797 | * @return Service |
||
| 798 | */ |
||
| 799 | public function setDocumentation(array $Documentation): Service |
||
| 804 | |||
| 805 | /** |
||
| 806 | * @return array |
||
| 807 | */ |
||
| 808 | public function getDropInPaths(): array |
||
| 812 | |||
| 813 | /** |
||
| 814 | * @param array $DropInPaths |
||
| 815 | * @return Service |
||
| 816 | */ |
||
| 817 | public function setDropInPaths(array $DropInPaths): Service |
||
| 822 | |||
| 823 | /** |
||
| 824 | * @return mixed |
||
| 825 | */ |
||
| 826 | public function getDynamicUser() |
||
| 830 | |||
| 831 | /** |
||
| 832 | * @param mixed $DynamicUser |
||
| 833 | * @return Service |
||
| 834 | */ |
||
| 835 | public function setDynamicUser($DynamicUser) |
||
| 840 | |||
| 841 | /** |
||
| 842 | * @return array |
||
| 843 | */ |
||
| 844 | public function getEnvironment(): array |
||
| 848 | |||
| 849 | /** |
||
| 850 | * @param array $Environment |
||
| 851 | * @return Service |
||
| 852 | */ |
||
| 853 | public function setEnvironment(array $Environment): Service |
||
| 858 | |||
| 859 | /** |
||
| 860 | * @return mixed |
||
| 861 | */ |
||
| 862 | public function getEnvironmentFile() |
||
| 866 | |||
| 867 | /** |
||
| 868 | * @param mixed $EnvironmentFile |
||
| 869 | * @return Service |
||
| 870 | */ |
||
| 871 | public function setEnvironmentFile($EnvironmentFile) |
||
| 876 | |||
| 877 | /** |
||
| 878 | * @return mixed |
||
| 879 | */ |
||
| 880 | public function getExecMainCode() |
||
| 884 | |||
| 885 | /** |
||
| 886 | * @param mixed $ExecMainCode |
||
| 887 | * @return Service |
||
| 888 | */ |
||
| 889 | public function setExecMainCode($ExecMainCode) |
||
| 894 | |||
| 895 | /** |
||
| 896 | * @return mixed |
||
| 897 | */ |
||
| 898 | public function getExecMainExitTimestamp() |
||
| 902 | |||
| 903 | /** |
||
| 904 | * @param mixed $ExecMainExitTimestamp |
||
| 905 | * @return Service |
||
| 906 | */ |
||
| 907 | public function setExecMainExitTimestamp($ExecMainExitTimestamp) |
||
| 912 | |||
| 913 | /** |
||
| 914 | * @return mixed |
||
| 915 | */ |
||
| 916 | public function getExecMainExitTimestampMonotonic() |
||
| 920 | |||
| 921 | /** |
||
| 922 | * @param mixed $ExecMainExitTimestampMonotonic |
||
| 923 | * @return Service |
||
| 924 | */ |
||
| 925 | public function setExecMainExitTimestampMonotonic($ExecMainExitTimestampMonotonic) |
||
| 930 | |||
| 931 | /** |
||
| 932 | * @return mixed |
||
| 933 | */ |
||
| 934 | public function getExecMainPID() |
||
| 938 | |||
| 939 | /** |
||
| 940 | * @param mixed $ExecMainPID |
||
| 941 | * @return Service |
||
| 942 | */ |
||
| 943 | public function setExecMainPID($ExecMainPID) |
||
| 948 | |||
| 949 | /** |
||
| 950 | * @return mixed |
||
| 951 | */ |
||
| 952 | public function getExecMainStartTimestamp() |
||
| 956 | |||
| 957 | /** |
||
| 958 | * @param mixed $ExecMainStartTimestamp |
||
| 959 | * @return Service |
||
| 960 | */ |
||
| 961 | public function setExecMainStartTimestamp($ExecMainStartTimestamp) |
||
| 966 | |||
| 967 | /** |
||
| 968 | * @return mixed |
||
| 969 | */ |
||
| 970 | public function getExecMainStartTimestampMonotonic() |
||
| 974 | |||
| 975 | /** |
||
| 976 | * @param mixed $ExecMainStartTimestampMonotonic |
||
| 977 | * @return Service |
||
| 978 | */ |
||
| 979 | public function setExecMainStartTimestampMonotonic($ExecMainStartTimestampMonotonic) |
||
| 984 | |||
| 985 | /** |
||
| 986 | * @return mixed |
||
| 987 | */ |
||
| 988 | public function getExecMainStatus() |
||
| 992 | |||
| 993 | /** |
||
| 994 | * @param mixed $ExecMainStatus |
||
| 995 | * @return Service |
||
| 996 | */ |
||
| 997 | public function setExecMainStatus($ExecMainStatus) |
||
| 1002 | |||
| 1003 | /** |
||
| 1004 | * @return mixed |
||
| 1005 | */ |
||
| 1006 | public function getExecReload() |
||
| 1010 | |||
| 1011 | /** |
||
| 1012 | * @param mixed $ExecReload |
||
| 1013 | * @return Service |
||
| 1014 | */ |
||
| 1015 | public function setExecReload($ExecReload) |
||
| 1020 | |||
| 1021 | /** |
||
| 1022 | * @return mixed |
||
| 1023 | */ |
||
| 1024 | public function getExecStart() |
||
| 1028 | |||
| 1029 | /** |
||
| 1030 | * @param mixed $ExecStart |
||
| 1031 | * @return Service |
||
| 1032 | */ |
||
| 1033 | public function setExecStart($ExecStart) |
||
| 1038 | |||
| 1039 | /** |
||
| 1040 | * @return mixed |
||
| 1041 | */ |
||
| 1042 | public function getExecStartPost() |
||
| 1046 | |||
| 1047 | /** |
||
| 1048 | * @param mixed $ExecStartPost |
||
| 1049 | * @return Service |
||
| 1050 | */ |
||
| 1051 | public function setExecStartPost($ExecStartPost) |
||
| 1056 | |||
| 1057 | /** |
||
| 1058 | * @return mixed |
||
| 1059 | */ |
||
| 1060 | public function getExecStartPre() |
||
| 1064 | |||
| 1065 | /** |
||
| 1066 | * @param mixed $ExecStartPre |
||
| 1067 | * @return Service |
||
| 1068 | */ |
||
| 1069 | public function setExecStartPre($ExecStartPre) |
||
| 1074 | |||
| 1075 | /** |
||
| 1076 | * @return mixed |
||
| 1077 | */ |
||
| 1078 | public function getExecStop() |
||
| 1082 | |||
| 1083 | /** |
||
| 1084 | * @param mixed $ExecStop |
||
| 1085 | * @return Service |
||
| 1086 | */ |
||
| 1087 | public function setExecStop($ExecStop) |
||
| 1092 | |||
| 1093 | /** |
||
| 1094 | * @return mixed |
||
| 1095 | */ |
||
| 1096 | public function getExecStopPost() |
||
| 1100 | |||
| 1101 | /** |
||
| 1102 | * @param mixed $ExecStopPost |
||
| 1103 | * @return Service |
||
| 1104 | */ |
||
| 1105 | public function setExecStopPost($ExecStopPost) |
||
| 1110 | |||
| 1111 | /** |
||
| 1112 | * @return mixed |
||
| 1113 | */ |
||
| 1114 | public function getFailureAction() |
||
| 1118 | |||
| 1119 | /** |
||
| 1120 | * @param mixed $FailureAction |
||
| 1121 | * @return Service |
||
| 1122 | */ |
||
| 1123 | public function setFailureAction($FailureAction) |
||
| 1128 | |||
| 1129 | /** |
||
| 1130 | * @return mixed |
||
| 1131 | */ |
||
| 1132 | public function getFileDescriptorStoreMax() |
||
| 1136 | |||
| 1137 | /** |
||
| 1138 | * @param mixed $FileDescriptorStoreMax |
||
| 1139 | * @return Service |
||
| 1140 | */ |
||
| 1141 | public function setFileDescriptorStoreMax($FileDescriptorStoreMax) |
||
| 1146 | |||
| 1147 | /** |
||
| 1148 | * @return mixed |
||
| 1149 | */ |
||
| 1150 | public function getFragmentPath() |
||
| 1154 | |||
| 1155 | /** |
||
| 1156 | * @param mixed $FragmentPath |
||
| 1157 | * @return Service |
||
| 1158 | */ |
||
| 1159 | public function setFragmentPath($FragmentPath) |
||
| 1164 | |||
| 1165 | /** |
||
| 1166 | * @return mixed |
||
| 1167 | */ |
||
| 1168 | public function getGID() |
||
| 1172 | |||
| 1173 | /** |
||
| 1174 | * @param mixed $GID |
||
| 1175 | * @return Service |
||
| 1176 | */ |
||
| 1177 | public function setGID($GID) |
||
| 1182 | |||
| 1183 | /** |
||
| 1184 | * @return mixed |
||
| 1185 | */ |
||
| 1186 | public function getGroup() |
||
| 1190 | |||
| 1191 | /** |
||
| 1192 | * @param mixed $Group |
||
| 1193 | * @return Service |
||
| 1194 | */ |
||
| 1195 | public function setGroup($Group) |
||
| 1200 | |||
| 1201 | /** |
||
| 1202 | * @return mixed |
||
| 1203 | */ |
||
| 1204 | public function getGuessMainPID() |
||
| 1208 | |||
| 1209 | /** |
||
| 1210 | * @param mixed $GuessMainPID |
||
| 1211 | * @return Service |
||
| 1212 | */ |
||
| 1213 | public function setGuessMainPID($GuessMainPID) |
||
| 1218 | |||
| 1219 | /** |
||
| 1220 | * @return mixed |
||
| 1221 | */ |
||
| 1222 | public function getIOAccounting() |
||
| 1226 | |||
| 1227 | /** |
||
| 1228 | * @param mixed $IOAccounting |
||
| 1229 | * @return Service |
||
| 1230 | */ |
||
| 1231 | public function setIOAccounting($IOAccounting) |
||
| 1236 | |||
| 1237 | /** |
||
| 1238 | * @return mixed |
||
| 1239 | */ |
||
| 1240 | public function getIOScheduling() |
||
| 1244 | |||
| 1245 | /** |
||
| 1246 | * @param mixed $IOScheduling |
||
| 1247 | * @return Service |
||
| 1248 | */ |
||
| 1249 | public function setIOScheduling($IOScheduling) |
||
| 1254 | |||
| 1255 | /** |
||
| 1256 | * @return mixed |
||
| 1257 | */ |
||
| 1258 | public function getIgnoreOnSnapshot() |
||
| 1262 | |||
| 1263 | /** |
||
| 1264 | * @param mixed $IgnoreOnSnapshot |
||
| 1265 | * @return Service |
||
| 1266 | */ |
||
| 1267 | public function setIgnoreOnSnapshot($IgnoreOnSnapshot) |
||
| 1272 | |||
| 1273 | /** |
||
| 1274 | * @return mixed |
||
| 1275 | */ |
||
| 1276 | public function getIOWeight() |
||
| 1280 | |||
| 1281 | /** |
||
| 1282 | * @param mixed $IOWeight |
||
| 1283 | * @return Service |
||
| 1284 | */ |
||
| 1285 | public function setIOWeight($IOWeight) |
||
| 1290 | |||
| 1291 | /** |
||
| 1292 | * @return mixed |
||
| 1293 | */ |
||
| 1294 | public function getIgnoreSIGPIPE() |
||
| 1298 | |||
| 1299 | /** |
||
| 1300 | * @param mixed $IgnoreSIGPIPE |
||
| 1301 | * @return Service |
||
| 1302 | */ |
||
| 1303 | public function setIgnoreSIGPIPE($IgnoreSIGPIPE) |
||
| 1308 | |||
| 1309 | /** |
||
| 1310 | * @return mixed |
||
| 1311 | */ |
||
| 1312 | public function getInactiveEnterTimestamp() |
||
| 1316 | |||
| 1317 | /** |
||
| 1318 | * @param mixed $InactiveEnterTimestamp |
||
| 1319 | * @return Service |
||
| 1320 | */ |
||
| 1321 | public function setInactiveEnterTimestamp($InactiveEnterTimestamp) |
||
| 1326 | |||
| 1327 | /** |
||
| 1328 | * @return mixed |
||
| 1329 | */ |
||
| 1330 | public function getKillMode() |
||
| 1334 | |||
| 1335 | /** |
||
| 1336 | * @param mixed $KillMode |
||
| 1337 | * @return Service |
||
| 1338 | */ |
||
| 1339 | public function setKillMode($KillMode) |
||
| 1344 | |||
| 1345 | /** |
||
| 1346 | * @return mixed |
||
| 1347 | */ |
||
| 1348 | public function getKillSignal() |
||
| 1352 | |||
| 1353 | /** |
||
| 1354 | * @param mixed $KillSignal |
||
| 1355 | * @return Service |
||
| 1356 | */ |
||
| 1357 | public function setKillSignal($KillSignal) |
||
| 1362 | |||
| 1363 | /** |
||
| 1364 | * @return mixed |
||
| 1365 | */ |
||
| 1366 | public function getLimitAS() |
||
| 1370 | |||
| 1371 | /** |
||
| 1372 | * @param mixed $LimitAS |
||
| 1373 | * @return Service |
||
| 1374 | */ |
||
| 1375 | public function setLimitAS($LimitAS) |
||
| 1380 | |||
| 1381 | /** |
||
| 1382 | * @return mixed |
||
| 1383 | */ |
||
| 1384 | public function getLimitASSoft() |
||
| 1388 | |||
| 1389 | /** |
||
| 1390 | * @param mixed $LimitASSoft |
||
| 1391 | * @return Service |
||
| 1392 | */ |
||
| 1393 | public function setLimitASSoft($LimitASSoft) |
||
| 1398 | |||
| 1399 | /** |
||
| 1400 | * @return mixed |
||
| 1401 | */ |
||
| 1402 | public function getLimitCORE() |
||
| 1406 | |||
| 1407 | /** |
||
| 1408 | * @param mixed $LimitCORE |
||
| 1409 | * @return Service |
||
| 1410 | */ |
||
| 1411 | public function setLimitCORE($LimitCORE) |
||
| 1416 | |||
| 1417 | /** |
||
| 1418 | * @return mixed |
||
| 1419 | */ |
||
| 1420 | public function getLimitCORESoft() |
||
| 1424 | |||
| 1425 | /** |
||
| 1426 | * @param mixed $LimitCORESoft |
||
| 1427 | * @return Service |
||
| 1428 | */ |
||
| 1429 | public function setLimitCORESoft($LimitCORESoft) |
||
| 1434 | |||
| 1435 | /** |
||
| 1436 | * @return mixed |
||
| 1437 | */ |
||
| 1438 | public function getLimitCPU() |
||
| 1442 | |||
| 1443 | /** |
||
| 1444 | * @param mixed $LimitCPU |
||
| 1445 | * @return Service |
||
| 1446 | */ |
||
| 1447 | public function setLimitCPU($LimitCPU) |
||
| 1452 | |||
| 1453 | /** |
||
| 1454 | * @return mixed |
||
| 1455 | */ |
||
| 1456 | public function getLimitCPUSoft() |
||
| 1460 | |||
| 1461 | /** |
||
| 1462 | * @param mixed $LimitCPUSoft |
||
| 1463 | * @return Service |
||
| 1464 | */ |
||
| 1465 | public function setLimitCPUSoft($LimitCPUSoft) |
||
| 1470 | |||
| 1471 | /** |
||
| 1472 | * @return mixed |
||
| 1473 | */ |
||
| 1474 | public function getLimitDATA() |
||
| 1478 | |||
| 1479 | /** |
||
| 1480 | * @param mixed $LimitDATA |
||
| 1481 | * @return Service |
||
| 1482 | */ |
||
| 1483 | public function setLimitDATA($LimitDATA) |
||
| 1488 | |||
| 1489 | /** |
||
| 1490 | * @return mixed |
||
| 1491 | */ |
||
| 1492 | public function getLimitDATASoft() |
||
| 1496 | |||
| 1497 | /** |
||
| 1498 | * @param mixed $LimitDATASoft |
||
| 1499 | * @return Service |
||
| 1500 | */ |
||
| 1501 | public function setLimitDATASoft($LimitDATASoft) |
||
| 1506 | |||
| 1507 | /** |
||
| 1508 | * @return mixed |
||
| 1509 | */ |
||
| 1510 | public function getLimitFSIZE() |
||
| 1514 | |||
| 1515 | /** |
||
| 1516 | * @param mixed $LimitFSIZE |
||
| 1517 | * @return Service |
||
| 1518 | */ |
||
| 1519 | public function setLimitFSIZE($LimitFSIZE) |
||
| 1524 | |||
| 1525 | /** |
||
| 1526 | * @return mixed |
||
| 1527 | */ |
||
| 1528 | public function getLimitFSIZESoft() |
||
| 1532 | |||
| 1533 | /** |
||
| 1534 | * @param mixed $LimitFSIZESoft |
||
| 1535 | * @return Service |
||
| 1536 | */ |
||
| 1537 | public function setLimitFSIZESoft($LimitFSIZESoft) |
||
| 1542 | |||
| 1543 | /** |
||
| 1544 | * @return mixed |
||
| 1545 | */ |
||
| 1546 | public function getLimitLOCKS() |
||
| 1550 | |||
| 1551 | /** |
||
| 1552 | * @param mixed $LimitLOCKS |
||
| 1553 | * @return Service |
||
| 1554 | */ |
||
| 1555 | public function setLimitLOCKS($LimitLOCKS) |
||
| 1560 | |||
| 1561 | /** |
||
| 1562 | * @return mixed |
||
| 1563 | */ |
||
| 1564 | public function getLimitLOCKSSoft() |
||
| 1568 | |||
| 1569 | /** |
||
| 1570 | * @param mixed $LimitLOCKSSoft |
||
| 1571 | * @return Service |
||
| 1572 | */ |
||
| 1573 | public function setLimitLOCKSSoft($LimitLOCKSSoft) |
||
| 1578 | |||
| 1579 | /** |
||
| 1580 | * @return mixed |
||
| 1581 | */ |
||
| 1582 | public function getLimitMEMLOCK() |
||
| 1586 | |||
| 1587 | /** |
||
| 1588 | * @param mixed $LimitMEMLOCK |
||
| 1589 | * @return Service |
||
| 1590 | */ |
||
| 1591 | public function setLimitMEMLOCK($LimitMEMLOCK) |
||
| 1596 | |||
| 1597 | /** |
||
| 1598 | * @return mixed |
||
| 1599 | */ |
||
| 1600 | public function getLimitMEMLOCKSoft() |
||
| 1604 | |||
| 1605 | /** |
||
| 1606 | * @param mixed $LimitMEMLOCKSoft |
||
| 1607 | * @return Service |
||
| 1608 | */ |
||
| 1609 | public function setLimitMEMLOCKSoft($LimitMEMLOCKSoft) |
||
| 1614 | |||
| 1615 | /** |
||
| 1616 | * @return mixed |
||
| 1617 | */ |
||
| 1618 | public function getLimitMSGQUEUE() |
||
| 1622 | |||
| 1623 | /** |
||
| 1624 | * @param mixed $LimitMSGQUEUE |
||
| 1625 | * @return Service |
||
| 1626 | */ |
||
| 1627 | public function setLimitMSGQUEUE($LimitMSGQUEUE) |
||
| 1632 | |||
| 1633 | /** |
||
| 1634 | * @return mixed |
||
| 1635 | */ |
||
| 1636 | public function getLimitMSGQUEUESoft() |
||
| 1640 | |||
| 1641 | /** |
||
| 1642 | * @param mixed $LimitMSGQUEUESoft |
||
| 1643 | * @return Service |
||
| 1644 | */ |
||
| 1645 | public function setLimitMSGQUEUESoft($LimitMSGQUEUESoft) |
||
| 1650 | |||
| 1651 | /** |
||
| 1652 | * @return mixed |
||
| 1653 | */ |
||
| 1654 | public function getLimitNICE() |
||
| 1658 | |||
| 1659 | /** |
||
| 1660 | * @param mixed $LimitNICE |
||
| 1661 | * @return Service |
||
| 1662 | */ |
||
| 1663 | public function setLimitNICE($LimitNICE) |
||
| 1668 | |||
| 1669 | /** |
||
| 1670 | * @return mixed |
||
| 1671 | */ |
||
| 1672 | public function getLimitNICESoft() |
||
| 1676 | |||
| 1677 | /** |
||
| 1678 | * @param mixed $LimitNICESoft |
||
| 1679 | * @return Service |
||
| 1680 | */ |
||
| 1681 | public function setLimitNICESoft($LimitNICESoft) |
||
| 1686 | |||
| 1687 | /** |
||
| 1688 | * @return mixed |
||
| 1689 | */ |
||
| 1690 | public function getLimitNOFILE() |
||
| 1694 | |||
| 1695 | /** |
||
| 1696 | * @param mixed $LimitNOFILE |
||
| 1697 | * @return Service |
||
| 1698 | */ |
||
| 1699 | public function setLimitNOFILE($LimitNOFILE) |
||
| 1704 | |||
| 1705 | /** |
||
| 1706 | * @return mixed |
||
| 1707 | */ |
||
| 1708 | public function getLimitNOFILESoft() |
||
| 1712 | |||
| 1713 | /** |
||
| 1714 | * @param mixed $LimitNOFILESoft |
||
| 1715 | * @return Service |
||
| 1716 | */ |
||
| 1717 | public function setLimitNOFILESoft($LimitNOFILESoft) |
||
| 1722 | |||
| 1723 | /** |
||
| 1724 | * @return mixed |
||
| 1725 | */ |
||
| 1726 | public function getLimitNPROC() |
||
| 1730 | |||
| 1731 | /** |
||
| 1732 | * @param mixed $LimitNPROC |
||
| 1733 | * @return Service |
||
| 1734 | */ |
||
| 1735 | public function setLimitNPROC($LimitNPROC) |
||
| 1740 | |||
| 1741 | /** |
||
| 1742 | * @return mixed |
||
| 1743 | */ |
||
| 1744 | public function getLimitNPROCSoft() |
||
| 1748 | |||
| 1749 | /** |
||
| 1750 | * @param mixed $LimitNPROCSoft |
||
| 1751 | * @return Service |
||
| 1752 | */ |
||
| 1753 | public function setLimitNPROCSoft($LimitNPROCSoft) |
||
| 1758 | |||
| 1759 | /** |
||
| 1760 | * @return mixed |
||
| 1761 | */ |
||
| 1762 | public function getLimitRSS() |
||
| 1766 | |||
| 1767 | /** |
||
| 1768 | * @param mixed $LimitRSS |
||
| 1769 | * @return Service |
||
| 1770 | */ |
||
| 1771 | public function setLimitRSS($LimitRSS) |
||
| 1776 | |||
| 1777 | /** |
||
| 1778 | * @return mixed |
||
| 1779 | */ |
||
| 1780 | public function getLimitRSSSoft() |
||
| 1784 | |||
| 1785 | /** |
||
| 1786 | * @param mixed $LimitRSSSoft |
||
| 1787 | * @return Service |
||
| 1788 | */ |
||
| 1789 | public function setLimitRSSSoft($LimitRSSSoft) |
||
| 1794 | |||
| 1795 | /** |
||
| 1796 | * @return mixed |
||
| 1797 | */ |
||
| 1798 | public function getLimitRTPRIO() |
||
| 1802 | |||
| 1803 | /** |
||
| 1804 | * @param mixed $LimitRTPRIO |
||
| 1805 | * @return Service |
||
| 1806 | */ |
||
| 1807 | public function setLimitRTPRIO($LimitRTPRIO) |
||
| 1812 | |||
| 1813 | /** |
||
| 1814 | * @return mixed |
||
| 1815 | */ |
||
| 1816 | public function getLimitRTPRIOSoft() |
||
| 1820 | |||
| 1821 | /** |
||
| 1822 | * @param mixed $LimitRTPRIOSoft |
||
| 1823 | * @return Service |
||
| 1824 | */ |
||
| 1825 | public function setLimitRTPRIOSoft($LimitRTPRIOSoft) |
||
| 1830 | |||
| 1831 | /** |
||
| 1832 | * @return mixed |
||
| 1833 | */ |
||
| 1834 | public function getLimitRTTIME() |
||
| 1838 | |||
| 1839 | /** |
||
| 1840 | * @param mixed $LimitRTTIME |
||
| 1841 | * @return Service |
||
| 1842 | */ |
||
| 1843 | public function setLimitRTTIME($LimitRTTIME) |
||
| 1848 | |||
| 1849 | /** |
||
| 1850 | * @return mixed |
||
| 1851 | */ |
||
| 1852 | public function getLimitRTTIMESoft() |
||
| 1856 | |||
| 1857 | /** |
||
| 1858 | * @param mixed $LimitRTTIMESoft |
||
| 1859 | * @return Service |
||
| 1860 | */ |
||
| 1861 | public function setLimitRTTIMESoft($LimitRTTIMESoft) |
||
| 1866 | |||
| 1867 | /** |
||
| 1868 | * @return mixed |
||
| 1869 | */ |
||
| 1870 | public function getLimitSIGPENDING() |
||
| 1874 | |||
| 1875 | /** |
||
| 1876 | * @param mixed $LimitSIGPENDING |
||
| 1877 | * @return Service |
||
| 1878 | */ |
||
| 1879 | public function setLimitSIGPENDING($LimitSIGPENDING) |
||
| 1884 | |||
| 1885 | /** |
||
| 1886 | * @return mixed |
||
| 1887 | */ |
||
| 1888 | public function getLimitSIGPENDINGSoft() |
||
| 1892 | |||
| 1893 | /** |
||
| 1894 | * @param mixed $LimitSIGPENDINGSoft |
||
| 1895 | * @return Service |
||
| 1896 | */ |
||
| 1897 | public function setLimitSIGPENDINGSoft($LimitSIGPENDINGSoft) |
||
| 1902 | |||
| 1903 | /** |
||
| 1904 | * @return mixed |
||
| 1905 | */ |
||
| 1906 | public function getLimitSTACK() |
||
| 1910 | |||
| 1911 | /** |
||
| 1912 | * @param mixed $LimitSTACK |
||
| 1913 | * @return Service |
||
| 1914 | */ |
||
| 1915 | public function setLimitSTACK($LimitSTACK) |
||
| 1920 | |||
| 1921 | /** |
||
| 1922 | * @return mixed |
||
| 1923 | */ |
||
| 1924 | public function getLimitSTACKSoft() |
||
| 1928 | |||
| 1929 | /** |
||
| 1930 | * @param mixed $LimitSTACKSoft |
||
| 1931 | * @return Service |
||
| 1932 | */ |
||
| 1933 | public function setLimitSTACKSoft($LimitSTACKSoft) |
||
| 1938 | |||
| 1939 | /** |
||
| 1940 | * @return mixed |
||
| 1941 | */ |
||
| 1942 | public function getMainPID() |
||
| 1946 | |||
| 1947 | /** |
||
| 1948 | * @param mixed $MainPID |
||
| 1949 | * @return Service |
||
| 1950 | */ |
||
| 1951 | public function setMainPID($MainPID) |
||
| 1956 | |||
| 1957 | /** |
||
| 1958 | * @return mixed |
||
| 1959 | */ |
||
| 1960 | public function getMemoryAccounting() |
||
| 1964 | |||
| 1965 | /** |
||
| 1966 | * @param mixed $MemoryAccounting |
||
| 1967 | * @return Service |
||
| 1968 | */ |
||
| 1969 | public function setMemoryAccounting($MemoryAccounting) |
||
| 1974 | |||
| 1975 | /** |
||
| 1976 | * @return mixed |
||
| 1977 | */ |
||
| 1978 | public function getMemoryCurrent() |
||
| 1982 | |||
| 1983 | /** |
||
| 1984 | * @param mixed $MemoryCurrent |
||
| 1985 | * @return Service |
||
| 1986 | */ |
||
| 1987 | public function setMemoryCurrent($MemoryCurrent) |
||
| 1992 | |||
| 1993 | /** |
||
| 1994 | * @return mixed |
||
| 1995 | */ |
||
| 1996 | public function getMemoryDenyWriteExecute() |
||
| 2000 | |||
| 2001 | /** |
||
| 2002 | * @param mixed $MemoryDenyWriteExecute |
||
| 2003 | * @return Service |
||
| 2004 | */ |
||
| 2005 | public function setMemoryDenyWriteExecute($MemoryDenyWriteExecute) |
||
| 2010 | |||
| 2011 | /** |
||
| 2012 | * @return mixed |
||
| 2013 | */ |
||
| 2014 | public function getMemoryHigh() |
||
| 2018 | |||
| 2019 | /** |
||
| 2020 | * @param mixed $MemoryHigh |
||
| 2021 | * @return Service |
||
| 2022 | */ |
||
| 2023 | public function setMemoryHigh($MemoryHigh) |
||
| 2028 | |||
| 2029 | /** |
||
| 2030 | * @return mixed |
||
| 2031 | */ |
||
| 2032 | public function getMemoryLimit() |
||
| 2036 | |||
| 2037 | /** |
||
| 2038 | * @param mixed $MemoryLimit |
||
| 2039 | * @return Service |
||
| 2040 | */ |
||
| 2041 | public function setMemoryLimit($MemoryLimit) |
||
| 2046 | |||
| 2047 | /** |
||
| 2048 | * @return mixed |
||
| 2049 | */ |
||
| 2050 | public function getMemoryLow() |
||
| 2054 | |||
| 2055 | /** |
||
| 2056 | * @param mixed $MemoryLow |
||
| 2057 | * @return Service |
||
| 2058 | */ |
||
| 2059 | public function setMemoryLow($MemoryLow) |
||
| 2064 | |||
| 2065 | /** |
||
| 2066 | * @return mixed |
||
| 2067 | */ |
||
| 2068 | public function getMemoryMax() |
||
| 2072 | |||
| 2073 | /** |
||
| 2074 | * @param mixed $MemoryMax |
||
| 2075 | * @return Service |
||
| 2076 | */ |
||
| 2077 | public function setMemoryMax($MemoryMax) |
||
| 2082 | |||
| 2083 | /** |
||
| 2084 | * @return mixed |
||
| 2085 | */ |
||
| 2086 | public function getMemorySwapMax() |
||
| 2090 | |||
| 2091 | /** |
||
| 2092 | * @param mixed $MemorySwapMax |
||
| 2093 | * @return Service |
||
| 2094 | */ |
||
| 2095 | public function setMemorySwapMax($MemorySwapMax) |
||
| 2100 | |||
| 2101 | /** |
||
| 2102 | * @return mixed |
||
| 2103 | */ |
||
| 2104 | public function getMountFlags() |
||
| 2108 | |||
| 2109 | /** |
||
| 2110 | * @param mixed $MountFlags |
||
| 2111 | * @return Service |
||
| 2112 | */ |
||
| 2113 | public function setMountFlags($MountFlags) |
||
| 2118 | |||
| 2119 | /** |
||
| 2120 | * @return mixed |
||
| 2121 | */ |
||
| 2122 | public function getNFileDescriptorStore() |
||
| 2126 | |||
| 2127 | /** |
||
| 2128 | * @param mixed $NFileDescriptorStore |
||
| 2129 | * @return Service |
||
| 2130 | */ |
||
| 2131 | public function setNFileDescriptorStore($NFileDescriptorStore) |
||
| 2136 | |||
| 2137 | /** |
||
| 2138 | * @return mixed |
||
| 2139 | */ |
||
| 2140 | public function getNice() |
||
| 2144 | |||
| 2145 | /** |
||
| 2146 | * @param mixed $Nice |
||
| 2147 | * @return Service |
||
| 2148 | */ |
||
| 2149 | public function setNice($Nice) |
||
| 2154 | |||
| 2155 | /** |
||
| 2156 | * @return mixed |
||
| 2157 | */ |
||
| 2158 | public function getNoNewPrivileges() |
||
| 2162 | |||
| 2163 | /** |
||
| 2164 | * @param mixed $NoNewPrivileges |
||
| 2165 | * @return Service |
||
| 2166 | */ |
||
| 2167 | public function setNoNewPrivileges($NoNewPrivileges) |
||
| 2172 | |||
| 2173 | /** |
||
| 2174 | * @return mixed |
||
| 2175 | */ |
||
| 2176 | public function getNonBlocking() |
||
| 2180 | |||
| 2181 | /** |
||
| 2182 | * @param mixed $NonBlocking |
||
| 2183 | * @return Service |
||
| 2184 | */ |
||
| 2185 | public function setNonBlocking($NonBlocking) |
||
| 2190 | |||
| 2191 | /** |
||
| 2192 | * @return mixed |
||
| 2193 | */ |
||
| 2194 | public function getNotifyAccess() |
||
| 2198 | |||
| 2199 | /** |
||
| 2200 | * @param mixed $NotifyAccess |
||
| 2201 | * @return Service |
||
| 2202 | */ |
||
| 2203 | public function setNotifyAccess($NotifyAccess) |
||
| 2208 | |||
| 2209 | /** |
||
| 2210 | * @return mixed |
||
| 2211 | */ |
||
| 2212 | public function getOOMScoreAdjust() |
||
| 2216 | |||
| 2217 | /** |
||
| 2218 | * @param mixed $OOMScoreAdjust |
||
| 2219 | * @return Service |
||
| 2220 | */ |
||
| 2221 | public function setOOMScoreAdjust($OOMScoreAdjust) |
||
| 2226 | |||
| 2227 | /** |
||
| 2228 | * @return mixed |
||
| 2229 | */ |
||
| 2230 | public function getPAMName() |
||
| 2234 | |||
| 2235 | /** |
||
| 2236 | * @param mixed $PAMName |
||
| 2237 | * @return Service |
||
| 2238 | */ |
||
| 2239 | public function setPAMName($PAMName) |
||
| 2244 | |||
| 2245 | /** |
||
| 2246 | * @return mixed |
||
| 2247 | */ |
||
| 2248 | public function getPartOf() |
||
| 2252 | |||
| 2253 | /** |
||
| 2254 | * @param mixed $PartOf |
||
| 2255 | * @return Service |
||
| 2256 | */ |
||
| 2257 | public function setPartOf($PartOf) |
||
| 2262 | |||
| 2263 | /** |
||
| 2264 | * @return mixed |
||
| 2265 | */ |
||
| 2266 | public function getPIDFile() |
||
| 2270 | |||
| 2271 | /** |
||
| 2272 | * @param mixed $PIDFile |
||
| 2273 | * @return Service |
||
| 2274 | */ |
||
| 2275 | public function setPIDFile($PIDFile) |
||
| 2280 | |||
| 2281 | /** |
||
| 2282 | * @return mixed |
||
| 2283 | */ |
||
| 2284 | public function getPermissionsStartOnly() |
||
| 2288 | |||
| 2289 | /** |
||
| 2290 | * @param mixed $PermissionsStartOnly |
||
| 2291 | * @return Service |
||
| 2292 | */ |
||
| 2293 | public function setPermissionsStartOnly($PermissionsStartOnly) |
||
| 2298 | |||
| 2299 | /** |
||
| 2300 | * @return mixed |
||
| 2301 | */ |
||
| 2302 | public function getPrivateDevices() |
||
| 2306 | |||
| 2307 | /** |
||
| 2308 | * @param mixed $PrivateDevices |
||
| 2309 | * @return Service |
||
| 2310 | */ |
||
| 2311 | public function setPrivateDevices($PrivateDevices) |
||
| 2316 | |||
| 2317 | /** |
||
| 2318 | * @return mixed |
||
| 2319 | */ |
||
| 2320 | public function getPrivateNetwork() |
||
| 2324 | |||
| 2325 | /** |
||
| 2326 | * @param mixed $PrivateNetwork |
||
| 2327 | * @return Service |
||
| 2328 | */ |
||
| 2329 | public function setPrivateNetwork($PrivateNetwork) |
||
| 2334 | |||
| 2335 | /** |
||
| 2336 | * @return mixed |
||
| 2337 | */ |
||
| 2338 | public function getPrivateTmp() |
||
| 2342 | |||
| 2343 | /** |
||
| 2344 | * @param mixed $PrivateTmp |
||
| 2345 | * @return Service |
||
| 2346 | */ |
||
| 2347 | public function setPrivateTmp($PrivateTmp) |
||
| 2352 | |||
| 2353 | /** |
||
| 2354 | * @return mixed |
||
| 2355 | */ |
||
| 2356 | public function getPrivateUsers() |
||
| 2360 | |||
| 2361 | /** |
||
| 2362 | * @param mixed $PrivateUsers |
||
| 2363 | * @return Service |
||
| 2364 | */ |
||
| 2365 | public function setPrivateUsers($PrivateUsers) |
||
| 2370 | |||
| 2371 | /** |
||
| 2372 | * @return mixed |
||
| 2373 | */ |
||
| 2374 | public function getPropagatesReloadTo() |
||
| 2378 | |||
| 2379 | /** |
||
| 2380 | * @param mixed $PropagatesReloadTo |
||
| 2381 | * @return Service |
||
| 2382 | */ |
||
| 2383 | public function setPropagatesReloadTo($PropagatesReloadTo) |
||
| 2388 | |||
| 2389 | /** |
||
| 2390 | * @return mixed |
||
| 2391 | */ |
||
| 2392 | public function getProtectControlGroups() |
||
| 2396 | |||
| 2397 | /** |
||
| 2398 | * @param mixed $ProtectControlGroups |
||
| 2399 | * @return Service |
||
| 2400 | */ |
||
| 2401 | public function setProtectControlGroups($ProtectControlGroups) |
||
| 2406 | |||
| 2407 | /** |
||
| 2408 | * @return mixed |
||
| 2409 | */ |
||
| 2410 | public function getProtectHome() |
||
| 2414 | |||
| 2415 | /** |
||
| 2416 | * @param mixed $ProtectHome |
||
| 2417 | * @return Service |
||
| 2418 | */ |
||
| 2419 | public function setProtectHome($ProtectHome) |
||
| 2424 | |||
| 2425 | /** |
||
| 2426 | * @return mixed |
||
| 2427 | */ |
||
| 2428 | public function getProtectKernelModules() |
||
| 2432 | |||
| 2433 | /** |
||
| 2434 | * @param mixed $ProtectKernelModules |
||
| 2435 | * @return Service |
||
| 2436 | */ |
||
| 2437 | public function setProtectKernelModules($ProtectKernelModules) |
||
| 2442 | |||
| 2443 | /** |
||
| 2444 | * @return mixed |
||
| 2445 | */ |
||
| 2446 | public function getProtectKernelTunables() |
||
| 2450 | |||
| 2451 | /** |
||
| 2452 | * @param mixed $ProtectKernelTunables |
||
| 2453 | * @return Service |
||
| 2454 | */ |
||
| 2455 | public function setProtectKernelTunables($ProtectKernelTunables) |
||
| 2460 | |||
| 2461 | /** |
||
| 2462 | * @return mixed |
||
| 2463 | */ |
||
| 2464 | public function getProtectSystem() |
||
| 2468 | |||
| 2469 | /** |
||
| 2470 | * @param mixed $ProtectSystem |
||
| 2471 | * @return Service |
||
| 2472 | */ |
||
| 2473 | public function setProtectSystem($ProtectSystem) |
||
| 2478 | |||
| 2479 | /** |
||
| 2480 | * @return array |
||
| 2481 | */ |
||
| 2482 | public function getReadOnlyPaths(): array |
||
| 2486 | |||
| 2487 | /** |
||
| 2488 | * @param array $ReadOnlyPaths |
||
| 2489 | * @return Service |
||
| 2490 | */ |
||
| 2491 | public function setReadOnlyPaths(array $ReadOnlyPaths): Service |
||
| 2496 | |||
| 2497 | /** |
||
| 2498 | * @return array |
||
| 2499 | */ |
||
| 2500 | public function getReadWritePaths(): array |
||
| 2504 | |||
| 2505 | /** |
||
| 2506 | * @param array $ReadWritePaths |
||
| 2507 | * @return Service |
||
| 2508 | */ |
||
| 2509 | public function setReadWritePaths(array $ReadWritePaths): Service |
||
| 2514 | |||
| 2515 | /** |
||
| 2516 | * @return mixed |
||
| 2517 | */ |
||
| 2518 | public function getReloadPropagatedFrom() |
||
| 2522 | |||
| 2523 | /** |
||
| 2524 | * @param mixed $ReloadPropagatedFrom |
||
| 2525 | * @return Service |
||
| 2526 | */ |
||
| 2527 | public function setReloadPropagatedFrom($ReloadPropagatedFrom) |
||
| 2532 | |||
| 2533 | /** |
||
| 2534 | * @return mixed |
||
| 2535 | */ |
||
| 2536 | public function getRemainAfterExit() |
||
| 2540 | |||
| 2541 | /** |
||
| 2542 | * @param mixed $RemainAfterExit |
||
| 2543 | * @return Service |
||
| 2544 | */ |
||
| 2545 | public function setRemainAfterExit($RemainAfterExit) |
||
| 2550 | |||
| 2551 | /** |
||
| 2552 | * @return mixed |
||
| 2553 | */ |
||
| 2554 | public function getRemoveIPC() |
||
| 2558 | |||
| 2559 | /** |
||
| 2560 | * @param mixed $RemoveIPC |
||
| 2561 | * @return Service |
||
| 2562 | */ |
||
| 2563 | public function setRemoveIPC($RemoveIPC) |
||
| 2568 | |||
| 2569 | /** |
||
| 2570 | * @return array |
||
| 2571 | */ |
||
| 2572 | public function getRequiredBy(): array |
||
| 2576 | |||
| 2577 | /** |
||
| 2578 | * @param array $RequiredBy |
||
| 2579 | * @return Service |
||
| 2580 | */ |
||
| 2581 | public function setRequiredBy(array $RequiredBy): Service |
||
| 2586 | |||
| 2587 | /** |
||
| 2588 | * @return array |
||
| 2589 | */ |
||
| 2590 | public function getRequires(): array |
||
| 2594 | |||
| 2595 | /** |
||
| 2596 | * @param array $Requires |
||
| 2597 | * @return Service |
||
| 2598 | */ |
||
| 2599 | public function setRequires(array $Requires): Service |
||
| 2604 | |||
| 2605 | /** |
||
| 2606 | * @return array |
||
| 2607 | */ |
||
| 2608 | public function getRequiresMountsFor(): array |
||
| 2612 | |||
| 2613 | /** |
||
| 2614 | * @param array $RequiresMountsFor |
||
| 2615 | * @return Service |
||
| 2616 | */ |
||
| 2617 | public function setRequiresMountsFor(array $RequiresMountsFor): Service |
||
| 2622 | |||
| 2623 | /** |
||
| 2624 | * @return mixed |
||
| 2625 | */ |
||
| 2626 | public function getRequisite() |
||
| 2630 | |||
| 2631 | /** |
||
| 2632 | * @param mixed $Requisite |
||
| 2633 | * @return Service |
||
| 2634 | */ |
||
| 2635 | public function setRequisite($Requisite) |
||
| 2640 | |||
| 2641 | /** |
||
| 2642 | * @return mixed |
||
| 2643 | */ |
||
| 2644 | public function getRequisiteOf() |
||
| 2648 | |||
| 2649 | /** |
||
| 2650 | * @param mixed $RequisiteOf |
||
| 2651 | * @return Service |
||
| 2652 | */ |
||
| 2653 | public function setRequisiteOf($RequisiteOf) |
||
| 2658 | |||
| 2659 | /** |
||
| 2660 | * @return mixed |
||
| 2661 | */ |
||
| 2662 | public function getRestart() |
||
| 2666 | |||
| 2667 | /** |
||
| 2668 | * @param mixed $Restart |
||
| 2669 | * @return Service |
||
| 2670 | */ |
||
| 2671 | public function setRestart($Restart) |
||
| 2676 | |||
| 2677 | /** |
||
| 2678 | * @return mixed |
||
| 2679 | */ |
||
| 2680 | public function getRestartUSec() |
||
| 2684 | |||
| 2685 | /** |
||
| 2686 | * @param mixed $RestartUSec |
||
| 2687 | * @return Service |
||
| 2688 | */ |
||
| 2689 | public function setRestartUSec($RestartUSec) |
||
| 2694 | |||
| 2695 | /** |
||
| 2696 | * @return mixed |
||
| 2697 | */ |
||
| 2698 | public function getRestrictNamespace() |
||
| 2702 | |||
| 2703 | /** |
||
| 2704 | * @param mixed $RestrictNamespace |
||
| 2705 | * @return Service |
||
| 2706 | */ |
||
| 2707 | public function setRestrictNamespace($RestrictNamespace) |
||
| 2712 | |||
| 2713 | /** |
||
| 2714 | * @return mixed |
||
| 2715 | */ |
||
| 2716 | public function getRestrictRealtime() |
||
| 2720 | |||
| 2721 | /** |
||
| 2722 | * @param mixed $RestrictRealtime |
||
| 2723 | * @return Service |
||
| 2724 | */ |
||
| 2725 | public function setRestrictRealtime($RestrictRealtime) |
||
| 2730 | |||
| 2731 | /** |
||
| 2732 | * @return mixed |
||
| 2733 | */ |
||
| 2734 | public function getResult() |
||
| 2738 | |||
| 2739 | /** |
||
| 2740 | * @param mixed $Result |
||
| 2741 | * @return Service |
||
| 2742 | */ |
||
| 2743 | public function setResult($Result) |
||
| 2748 | |||
| 2749 | /** |
||
| 2750 | * @return mixed |
||
| 2751 | */ |
||
| 2752 | public function getRootDirectoryStartOnly() |
||
| 2756 | |||
| 2757 | /** |
||
| 2758 | * @param mixed $RootDirectoryStartOnly |
||
| 2759 | * @return Service |
||
| 2760 | */ |
||
| 2761 | public function setRootDirectoryStartOnly($RootDirectoryStartOnly) |
||
| 2766 | |||
| 2767 | /** |
||
| 2768 | * @return mixed |
||
| 2769 | */ |
||
| 2770 | public function getRuntimeDirectory() |
||
| 2774 | |||
| 2775 | /** |
||
| 2776 | * @param mixed $RuntimeDirectory |
||
| 2777 | * @return Service |
||
| 2778 | */ |
||
| 2779 | public function setRuntimeDirectory($RuntimeDirectory) |
||
| 2784 | |||
| 2785 | /** |
||
| 2786 | * @return mixed |
||
| 2787 | */ |
||
| 2788 | public function getRuntimeDirectoryMode() |
||
| 2792 | |||
| 2793 | /** |
||
| 2794 | * @param mixed $RuntimeDirectoryMode |
||
| 2795 | * @return Service |
||
| 2796 | */ |
||
| 2797 | public function setRuntimeDirectoryMode($RuntimeDirectoryMode) |
||
| 2802 | |||
| 2803 | /** |
||
| 2804 | * @return mixed |
||
| 2805 | */ |
||
| 2806 | public function getRuntimeMaxUSec() |
||
| 2810 | |||
| 2811 | /** |
||
| 2812 | * @param mixed $RuntimeMaxUSec |
||
| 2813 | * @return Service |
||
| 2814 | */ |
||
| 2815 | public function setRuntimeMaxUSec($RuntimeMaxUSec) |
||
| 2820 | |||
| 2821 | /** |
||
| 2822 | * @return mixed |
||
| 2823 | */ |
||
| 2824 | public function getSameProcessGroup() |
||
| 2828 | |||
| 2829 | /** |
||
| 2830 | * @param mixed $SameProcessGroup |
||
| 2831 | * @return Service |
||
| 2832 | */ |
||
| 2833 | public function setSameProcessGroup($SameProcessGroup) |
||
| 2838 | |||
| 2839 | /** |
||
| 2840 | * @return mixed |
||
| 2841 | */ |
||
| 2842 | public function getSecureBits() |
||
| 2846 | |||
| 2847 | /** |
||
| 2848 | * @param mixed $SecureBits |
||
| 2849 | * @return Service |
||
| 2850 | */ |
||
| 2851 | public function setSecureBits($SecureBits) |
||
| 2856 | |||
| 2857 | /** |
||
| 2858 | * @return mixed |
||
| 2859 | */ |
||
| 2860 | public function getSendSIGHUP() |
||
| 2864 | |||
| 2865 | /** |
||
| 2866 | * @param mixed $SendSIGHUP |
||
| 2867 | * @return Service |
||
| 2868 | */ |
||
| 2869 | public function setSendSIGHUP($SendSIGHUP) |
||
| 2874 | |||
| 2875 | /** |
||
| 2876 | * @return mixed |
||
| 2877 | */ |
||
| 2878 | public function getSendSIGKILL() |
||
| 2882 | |||
| 2883 | /** |
||
| 2884 | * @param mixed $SendSIGKILL |
||
| 2885 | * @return Service |
||
| 2886 | */ |
||
| 2887 | public function setSendSIGKILL($SendSIGKILL) |
||
| 2892 | |||
| 2893 | /** |
||
| 2894 | * @return mixed |
||
| 2895 | */ |
||
| 2896 | public function getSlice() |
||
| 2900 | |||
| 2901 | /** |
||
| 2902 | * @param mixed $Slice |
||
| 2903 | * @return Service |
||
| 2904 | */ |
||
| 2905 | public function setSlice($Slice) |
||
| 2910 | |||
| 2911 | /** |
||
| 2912 | * @return mixed |
||
| 2913 | */ |
||
| 2914 | public function getSourcePath() |
||
| 2918 | |||
| 2919 | /** |
||
| 2920 | * @param mixed $SourcePath |
||
| 2921 | * @return Service |
||
| 2922 | */ |
||
| 2923 | public function setSourcePath($SourcePath) |
||
| 2928 | |||
| 2929 | /** |
||
| 2930 | * @return mixed |
||
| 2931 | */ |
||
| 2932 | public function getStandardError() |
||
| 2936 | |||
| 2937 | /** |
||
| 2938 | * @param mixed $StandardError |
||
| 2939 | * @return Service |
||
| 2940 | */ |
||
| 2941 | public function setStandardError($StandardError) |
||
| 2946 | |||
| 2947 | /** |
||
| 2948 | * @return mixed |
||
| 2949 | */ |
||
| 2950 | public function getStandardInput() |
||
| 2954 | |||
| 2955 | /** |
||
| 2956 | * @param mixed $StandardInput |
||
| 2957 | * @return Service |
||
| 2958 | */ |
||
| 2959 | public function setStandardInput($StandardInput) |
||
| 2964 | |||
| 2965 | /** |
||
| 2966 | * @return mixed |
||
| 2967 | */ |
||
| 2968 | public function getStandardOutput() |
||
| 2972 | |||
| 2973 | /** |
||
| 2974 | * @param mixed $StandardOutput |
||
| 2975 | * @return Service |
||
| 2976 | */ |
||
| 2977 | public function setStandardOutput($StandardOutput) |
||
| 2982 | |||
| 2983 | /** |
||
| 2984 | * @return mixed |
||
| 2985 | */ |
||
| 2986 | public function getStartupBlockIOWeight() |
||
| 2990 | |||
| 2991 | /** |
||
| 2992 | * @param mixed $StartupBlockIOWeight |
||
| 2993 | * @return Service |
||
| 2994 | */ |
||
| 2995 | public function setStartupBlockIOWeight($StartupBlockIOWeight) |
||
| 3000 | |||
| 3001 | /** |
||
| 3002 | * @return mixed |
||
| 3003 | */ |
||
| 3004 | public function getStartupCPUShares() |
||
| 3008 | |||
| 3009 | /** |
||
| 3010 | * @param mixed $StartupCPUShares |
||
| 3011 | * @return Service |
||
| 3012 | */ |
||
| 3013 | public function setStartupCPUShares($StartupCPUShares) |
||
| 3018 | |||
| 3019 | /** |
||
| 3020 | * @return mixed |
||
| 3021 | */ |
||
| 3022 | public function getStartupCPUWeight() |
||
| 3026 | |||
| 3027 | /** |
||
| 3028 | * @param mixed $StartupCPUWeight |
||
| 3029 | * @return Service |
||
| 3030 | */ |
||
| 3031 | public function setStartupCPUWeight($StartupCPUWeight) |
||
| 3036 | |||
| 3037 | /** |
||
| 3038 | * @return mixed |
||
| 3039 | */ |
||
| 3040 | public function getStartupIOWeight() |
||
| 3044 | |||
| 3045 | /** |
||
| 3046 | * @param mixed $StartupIOWeight |
||
| 3047 | * @return Service |
||
| 3048 | */ |
||
| 3049 | public function setStartupIOWeight($StartupIOWeight) |
||
| 3054 | |||
| 3055 | /** |
||
| 3056 | * @return mixed |
||
| 3057 | */ |
||
| 3058 | public function getStatusText() |
||
| 3062 | |||
| 3063 | /** |
||
| 3064 | * @param mixed $StatusText |
||
| 3065 | * @return Service |
||
| 3066 | */ |
||
| 3067 | public function setStatusText($StatusText) |
||
| 3072 | |||
| 3073 | /** |
||
| 3074 | * @return mixed |
||
| 3075 | */ |
||
| 3076 | public function getStatusErrno() |
||
| 3080 | |||
| 3081 | /** |
||
| 3082 | * @param mixed $StatusErrno |
||
| 3083 | * @return Service |
||
| 3084 | */ |
||
| 3085 | public function setStatusErrno($StatusErrno) |
||
| 3090 | |||
| 3091 | /** |
||
| 3092 | * @return mixed |
||
| 3093 | */ |
||
| 3094 | public function getSyslogFacility() |
||
| 3098 | |||
| 3099 | /** |
||
| 3100 | * @param mixed $SyslogFacility |
||
| 3101 | * @return Service |
||
| 3102 | */ |
||
| 3103 | public function setSyslogFacility($SyslogFacility) |
||
| 3108 | |||
| 3109 | /** |
||
| 3110 | * @return mixed |
||
| 3111 | */ |
||
| 3112 | public function getSyslogIdentifier() |
||
| 3116 | |||
| 3117 | /** |
||
| 3118 | * @param mixed $SyslogIdentifier |
||
| 3119 | * @return Service |
||
| 3120 | */ |
||
| 3121 | public function setSyslogIdentifier($SyslogIdentifier) |
||
| 3126 | |||
| 3127 | /** |
||
| 3128 | * @return mixed |
||
| 3129 | */ |
||
| 3130 | public function getSyslogLevel() |
||
| 3134 | |||
| 3135 | /** |
||
| 3136 | * @param mixed $SyslogLevel |
||
| 3137 | * @return Service |
||
| 3138 | */ |
||
| 3139 | public function setSyslogLevel($SyslogLevel) |
||
| 3144 | |||
| 3145 | /** |
||
| 3146 | * @return mixed |
||
| 3147 | */ |
||
| 3148 | public function getSyslogLevelPrefix() |
||
| 3152 | |||
| 3153 | /** |
||
| 3154 | * @param mixed $SyslogLevelPrefix |
||
| 3155 | * @return Service |
||
| 3156 | */ |
||
| 3157 | public function setSyslogLevelPrefix($SyslogLevelPrefix) |
||
| 3162 | |||
| 3163 | /** |
||
| 3164 | * @return mixed |
||
| 3165 | */ |
||
| 3166 | public function getSyslogPriority() |
||
| 3170 | |||
| 3171 | /** |
||
| 3172 | * @param mixed $SyslogPriority |
||
| 3173 | * @return Service |
||
| 3174 | */ |
||
| 3175 | public function setSyslogPriority($SyslogPriority) |
||
| 3180 | |||
| 3181 | /** |
||
| 3182 | * @return mixed |
||
| 3183 | */ |
||
| 3184 | public function getSystemCallErrorNumber() |
||
| 3188 | |||
| 3189 | /** |
||
| 3190 | * @param mixed $SystemCallErrorNumber |
||
| 3191 | * @return Service |
||
| 3192 | */ |
||
| 3193 | public function setSystemCallErrorNumber($SystemCallErrorNumber) |
||
| 3198 | |||
| 3199 | /** |
||
| 3200 | * @return mixed |
||
| 3201 | */ |
||
| 3202 | public function getSystemCallFilter() |
||
| 3206 | |||
| 3207 | /** |
||
| 3208 | * @param mixed $SystemCallFilter |
||
| 3209 | * @return Service |
||
| 3210 | */ |
||
| 3211 | public function setSystemCallFilter($SystemCallFilter) |
||
| 3216 | |||
| 3217 | /** |
||
| 3218 | * @return mixed |
||
| 3219 | */ |
||
| 3220 | public function getTTYPath() |
||
| 3224 | |||
| 3225 | /** |
||
| 3226 | * @param mixed $TTYPath |
||
| 3227 | * @return Service |
||
| 3228 | */ |
||
| 3229 | public function setTTYPath($TTYPath) |
||
| 3234 | |||
| 3235 | /** |
||
| 3236 | * @return mixed |
||
| 3237 | */ |
||
| 3238 | public function getTTYReset() |
||
| 3242 | |||
| 3243 | /** |
||
| 3244 | * @param mixed $TTYReset |
||
| 3245 | * @return Service |
||
| 3246 | */ |
||
| 3247 | public function setTTYReset($TTYReset) |
||
| 3252 | |||
| 3253 | /** |
||
| 3254 | * @return mixed |
||
| 3255 | */ |
||
| 3256 | public function getTTYVHangup() |
||
| 3260 | |||
| 3261 | /** |
||
| 3262 | * @param mixed $TTYVHangup |
||
| 3263 | * @return Service |
||
| 3264 | */ |
||
| 3265 | public function setTTYVHangup($TTYVHangup) |
||
| 3270 | |||
| 3271 | /** |
||
| 3272 | * @return mixed |
||
| 3273 | */ |
||
| 3274 | public function getTTYVTDisallocate() |
||
| 3278 | |||
| 3279 | /** |
||
| 3280 | * @param mixed $TTYVTDisallocate |
||
| 3281 | * @return Service |
||
| 3282 | */ |
||
| 3283 | public function setTTYVTDisallocate($TTYVTDisallocate) |
||
| 3288 | |||
| 3289 | /** |
||
| 3290 | * @return mixed |
||
| 3291 | */ |
||
| 3292 | public function getTasksAccounting() |
||
| 3296 | |||
| 3297 | /** |
||
| 3298 | * @param mixed $TasksAccounting |
||
| 3299 | * @return Service |
||
| 3300 | */ |
||
| 3301 | public function setTasksAccounting($TasksAccounting) |
||
| 3306 | |||
| 3307 | /** |
||
| 3308 | * @return mixed |
||
| 3309 | */ |
||
| 3310 | public function getTasksCurrent() |
||
| 3314 | |||
| 3315 | /** |
||
| 3316 | * @param mixed $TasksCurrent |
||
| 3317 | * @return Service |
||
| 3318 | */ |
||
| 3319 | public function setTasksCurrent($TasksCurrent) |
||
| 3324 | |||
| 3325 | /** |
||
| 3326 | * @return mixed |
||
| 3327 | */ |
||
| 3328 | public function getTasksMax() |
||
| 3332 | |||
| 3333 | /** |
||
| 3334 | * @param mixed $TasksMax |
||
| 3335 | * @return Service |
||
| 3336 | */ |
||
| 3337 | public function setTasksMax($TasksMax) |
||
| 3342 | |||
| 3343 | /** |
||
| 3344 | * @return mixed |
||
| 3345 | */ |
||
| 3346 | public function getTimeoutStartUSec() |
||
| 3350 | |||
| 3351 | /** |
||
| 3352 | * @param mixed $TimeoutStartUSec |
||
| 3353 | * @return Service |
||
| 3354 | */ |
||
| 3355 | public function setTimeoutStartUSec($TimeoutStartUSec) |
||
| 3360 | |||
| 3361 | /** |
||
| 3362 | * @return mixed |
||
| 3363 | */ |
||
| 3364 | public function getTimeoutStopUSec() |
||
| 3368 | |||
| 3369 | /** |
||
| 3370 | * @param mixed $TimeoutStopUSec |
||
| 3371 | * @return Service |
||
| 3372 | */ |
||
| 3373 | public function setTimeoutStopUSec($TimeoutStopUSec) |
||
| 3378 | |||
| 3379 | /** |
||
| 3380 | * @return mixed |
||
| 3381 | */ |
||
| 3382 | public function getTimerSlackNSec() |
||
| 3386 | |||
| 3387 | /** |
||
| 3388 | * @param mixed $TimerSlackNSec |
||
| 3389 | * @return Service |
||
| 3390 | */ |
||
| 3391 | public function setTimerSlackNSec($TimerSlackNSec) |
||
| 3396 | |||
| 3397 | /** |
||
| 3398 | * @return mixed |
||
| 3399 | */ |
||
| 3400 | public function getTriggeredBy() |
||
| 3404 | |||
| 3405 | /** |
||
| 3406 | * @param mixed $TriggeredBy |
||
| 3407 | * @return Service |
||
| 3408 | */ |
||
| 3409 | public function setTriggeredBy($TriggeredBy) |
||
| 3414 | |||
| 3415 | /** |
||
| 3416 | * @return mixed |
||
| 3417 | */ |
||
| 3418 | public function getType() |
||
| 3422 | |||
| 3423 | /** |
||
| 3424 | * @param mixed $Type |
||
| 3425 | * @return Service |
||
| 3426 | */ |
||
| 3427 | public function setType($Type) |
||
| 3432 | |||
| 3433 | /** |
||
| 3434 | * @return mixed |
||
| 3435 | */ |
||
| 3436 | public function getUID() |
||
| 3440 | |||
| 3441 | /** |
||
| 3442 | * @param mixed $UID |
||
| 3443 | * @return Service |
||
| 3444 | */ |
||
| 3445 | public function setUID($UID) |
||
| 3450 | |||
| 3451 | /** |
||
| 3452 | * @return mixed |
||
| 3453 | */ |
||
| 3454 | public function getUMask() |
||
| 3458 | |||
| 3459 | /** |
||
| 3460 | * @param mixed $UMask |
||
| 3461 | * @return Service |
||
| 3462 | */ |
||
| 3463 | public function setUMask($UMask) |
||
| 3468 | |||
| 3469 | /** |
||
| 3470 | * @return mixed |
||
| 3471 | */ |
||
| 3472 | public function getUnitFilePreset() |
||
| 3476 | |||
| 3477 | /** |
||
| 3478 | * @param mixed $UnitFilePreset |
||
| 3479 | * @return Service |
||
| 3480 | */ |
||
| 3481 | public function setUnitFilePreset($UnitFilePreset) |
||
| 3486 | |||
| 3487 | /** |
||
| 3488 | * @return mixed |
||
| 3489 | */ |
||
| 3490 | public function getUnitFileState() |
||
| 3494 | |||
| 3495 | /** |
||
| 3496 | * @param mixed $UnitFileState |
||
| 3497 | * @return Service |
||
| 3498 | */ |
||
| 3499 | public function setUnitFileState($UnitFileState) |
||
| 3504 | |||
| 3505 | /** |
||
| 3506 | * @return mixed |
||
| 3507 | */ |
||
| 3508 | public function getUser() |
||
| 3512 | |||
| 3513 | /** |
||
| 3514 | * @param mixed $User |
||
| 3515 | * @return Service |
||
| 3516 | */ |
||
| 3517 | public function setUser($User) |
||
| 3522 | |||
| 3523 | /** |
||
| 3524 | * @return mixed |
||
| 3525 | */ |
||
| 3526 | public function getUtmpIdentifier() |
||
| 3530 | |||
| 3531 | /** |
||
| 3532 | * @param mixed $UtmpIdentifier |
||
| 3533 | * @return Service |
||
| 3534 | */ |
||
| 3535 | public function setUtmpIdentifier($UtmpIdentifier) |
||
| 3540 | |||
| 3541 | /** |
||
| 3542 | * @return mixed |
||
| 3543 | */ |
||
| 3544 | public function getUtmpMode() |
||
| 3548 | |||
| 3549 | /** |
||
| 3550 | * @param mixed $UtmpMode |
||
| 3551 | * @return Service |
||
| 3552 | */ |
||
| 3553 | public function setUtmpMode($UtmpMode) |
||
| 3558 | |||
| 3559 | /** |
||
| 3560 | * @return array |
||
| 3561 | */ |
||
| 3562 | public function getWantedBy(): array |
||
| 3566 | |||
| 3567 | /** |
||
| 3568 | * @param array $WantedBy |
||
| 3569 | * @return Service |
||
| 3570 | */ |
||
| 3571 | public function setWantedBy(array $WantedBy): Service |
||
| 3576 | |||
| 3577 | /** |
||
| 3578 | * @return array |
||
| 3579 | */ |
||
| 3580 | public function getWants(): array |
||
| 3584 | |||
| 3585 | /** |
||
| 3586 | * @param array $Wants |
||
| 3587 | * @return Service |
||
| 3588 | */ |
||
| 3589 | public function setWants(array $Wants): Service |
||
| 3594 | |||
| 3595 | /** |
||
| 3596 | * @return mixed |
||
| 3597 | */ |
||
| 3598 | public function getWatchdogTimestamp() |
||
| 3602 | |||
| 3603 | /** |
||
| 3604 | * @param mixed $WatchdogTimestamp |
||
| 3605 | * @return Service |
||
| 3606 | */ |
||
| 3607 | public function setWatchdogTimestamp($WatchdogTimestamp) |
||
| 3612 | |||
| 3613 | /** |
||
| 3614 | * @return mixed |
||
| 3615 | */ |
||
| 3616 | public function getWatchdogTimestampMonotonic() |
||
| 3620 | |||
| 3621 | /** |
||
| 3622 | * @param mixed $WatchdogTimestampMonotonic |
||
| 3623 | * @return Service |
||
| 3624 | */ |
||
| 3625 | public function setWatchdogTimestampMonotonic($WatchdogTimestampMonotonic) |
||
| 3630 | |||
| 3631 | /** |
||
| 3632 | * @return mixed |
||
| 3633 | */ |
||
| 3634 | public function getWatchdogUSec() |
||
| 3638 | |||
| 3639 | /** |
||
| 3640 | * @param mixed $WatchdogUSec |
||
| 3641 | * @return Service |
||
| 3642 | */ |
||
| 3643 | public function setWatchdogUSec($WatchdogUSec) |
||
| 3648 | |||
| 3649 | /** |
||
| 3650 | * @return mixed |
||
| 3651 | */ |
||
| 3652 | public function getWorkingDirectory() |
||
| 3656 | |||
| 3657 | /** |
||
| 3658 | * @param mixed $WorkingDirectory |
||
| 3659 | * @return Service |
||
| 3660 | */ |
||
| 3661 | public function setWorkingDirectory($WorkingDirectory) |
||
| 3666 | } |
||
| 3667 |