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