Fix class not found exception when trying to send commands

This has already been fixed but got lost during a rebase,
so no ticket ref exists.
This commit is contained in:
Jannis Moßhammer 2013-08-21 16:48:12 +02:00
parent d813ca62c5
commit 95ad8da2a3
1 changed files with 19 additions and 19 deletions

View File

@ -27,26 +27,26 @@
*/ */
// {{{ICINGA_LICENSE_HEADER}}} // {{{ICINGA_LICENSE_HEADER}}}
use Icinga\Application\Benchmark; use \Icinga\Application\Benchmark;
use Icinga\Application\Icinga; use \Icinga\Application\Icinga;
use \Icinga\Module\Monitoring\Backend; use \Monitoring\Backend;
use \Icinga\Application\Config; use \Icinga\Application\Config;
use Icinga\Application\Logger; use \Icinga\Application\Logger;
use Icinga\Authentication\Manager; use \Icinga\Authentication\Manager;
use Icinga\Web\Form; use \Icinga\Web\Form;
use Icinga\Web\Controller\ModuleActionController; use \Icinga\Web\Controller\ModuleActionController;
use Icinga\Protocol\Commandpipe\CommandPipe; use \Icinga\Protocol\Commandpipe\CommandPipe;
use Icinga\Exception\ConfigurationError; use \Icinga\Exception\ConfigurationError;
use Icinga\Exception\MissingParameterException; use \Icinga\Exception\MissingParameterException;
use Monitoring\Form\Command\AcknowledgeForm; use \Monitoring\Form\Command\AcknowledgeForm;
use Monitoring\Form\Command\CommentForm; use \Monitoring\Form\Command\CommentForm;
use Monitoring\Form\Command\CommandForm; use \Monitoring\Form\Command\CommandForm;
use Monitoring\Form\Command\CommandWithIdentifierForm; use \Monitoring\Form\Command\CommandWithIdentifierForm;
use Monitoring\Form\Command\CustomNotificationForm; use \Monitoring\Form\Command\CustomNotificationForm;
use Monitoring\Form\Command\DelayNotificationForm; use \Monitoring\Form\Command\DelayNotificationForm;
use Monitoring\Form\Command\RescheduleNextCheckForm; use \Monitoring\Form\Command\RescheduleNextCheckForm;
use Monitoring\Form\Command\ScheduleDowntimeForm; use \Monitoring\Form\Command\ScheduleDowntimeForm;
use Monitoring\Form\Command\SubmitPassiveCheckResultForm; use \Monitoring\Form\Command\SubmitPassiveCheckResultForm;
/** /**
* Class Monitoring_CommandController * Class Monitoring_CommandController