mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-11-03 20:54:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			499 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			499 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
// {{{ICINGA_LICENSE_HEADER}}}
 | 
						|
// {{{ICINGA_LICENSE_HEADER}}}
 | 
						|
 | 
						|
namespace Icinga\Module\Monitoring\Command\Object;
 | 
						|
 | 
						|
/**
 | 
						|
 * Remove a problem acknowledgement from a host or service
 | 
						|
 */
 | 
						|
class RemoveAcknowledgementCommand extends ObjectCommand
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * (non-PHPDoc)
 | 
						|
     * @see \Icinga\Module\Monitoring\Command\Object\ObjectCommand::$allowedObjects For the property documentation.
 | 
						|
     */
 | 
						|
    protected $allowedObjects = array(
 | 
						|
        self::TYPE_HOST,
 | 
						|
        self::TYPE_SERVICE
 | 
						|
    );
 | 
						|
}
 |