2014-09-11 11:18:07 -04:00
|
|
|
<?php
|
2016-02-08 09:41:00 -05:00
|
|
|
/* Icinga Web 2 | (c) 2014 Icinga Development Team | GPLv2+ */
|
2014-09-11 11:18:07 -04:00
|
|
|
|
|
|
|
|
namespace Icinga\Module\Monitoring\Command\Object;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Remove a problem acknowledgement from a host or service
|
|
|
|
|
*/
|
|
|
|
|
class RemoveAcknowledgementCommand extends ObjectCommand
|
|
|
|
|
{
|
2020-05-14 07:58:19 -04:00
|
|
|
use CommandAuthor;
|
|
|
|
|
|
2014-09-11 11:18:07 -04:00
|
|
|
/**
|
|
|
|
|
* (non-PHPDoc)
|
|
|
|
|
* @see \Icinga\Module\Monitoring\Command\Object\ObjectCommand::$allowedObjects For the property documentation.
|
|
|
|
|
*/
|
|
|
|
|
protected $allowedObjects = array(
|
|
|
|
|
self::TYPE_HOST,
|
|
|
|
|
self::TYPE_SERVICE
|
|
|
|
|
);
|
|
|
|
|
}
|