Eric Lippmann 5fa2e3cfdc Revert "Add license header"
This reverts commit 338d067aba41dd6e9178cebec5433eecd614196e.
2015-02-03 16:16:26 +01:00

50 lines
1.1 KiB
PHP

<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Module\Monitoring\Command\Object;
/**
* Schedule a host check
*/
class ScheduleHostCheckCommand extends ScheduleServiceCheckCommand
{
/**
* (non-PHPDoc)
* @see \Icinga\Module\Monitoring\Command\Object\ObjectCommand::$allowedObjects For the property documentation.
*/
protected $allowedObjects = array(
self::TYPE_HOST
);
/**
* Whether to schedule a check of all services associated with a particular host
*
* @var bool
*/
protected $ofAllServices = false;
/**
* Set whether to schedule a check of all services associated with a particular host
*
* @param bool $ofAllServices
*
* @return $this
*/
public function setOfAllServices($ofAllServices = true)
{
$this->ofAllServices = (bool) $ofAllServices;
return $this;
}
/**
* Get whether to schedule a check of all services associated with a particular host
*
* @return bool
*/
public function getOfAllServices()
{
return $this->ofAllServices;
}
}