ServiceCommand constructor

ServiceCommand()

Creates the service command group.

Implementation

ServiceCommand() {
  addSubcommand(ServiceInstallCommand());
  addSubcommand(ServiceReinstallCommand());
  addSubcommand(ServiceReconfigureCommand());
  addSubcommand(ServiceUninstallCommand());
  addSubcommand(ServiceStartCommand());
  addSubcommand(ServiceStopCommand());
  addSubcommand(ServiceRestartCommand());
  addSubcommand(ServiceStatusCommand());
  addSubcommand(ServiceInfoCommand());
}