2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-06-13 11:33:00 +02:00
|
|
|
|
|
|
|
#ifndef NOTIFICATIONCOMMAND_H
|
|
|
|
#define NOTIFICATIONCOMMAND_H
|
|
|
|
|
2018-01-18 13:50:38 +01:00
|
|
|
#include "icinga/notificationcommand-ti.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/notification.hpp"
|
2013-06-13 11:33:00 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
class Notification;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A notification command.
|
|
|
|
*
|
2013-08-20 08:29:38 +02:00
|
|
|
* @ingroup icinga
|
2013-06-13 11:33:00 +02:00
|
|
|
*/
|
2018-01-04 06:11:04 +01:00
|
|
|
class NotificationCommand final : public ObjectImpl<NotificationCommand>
|
2013-06-13 11:33:00 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-11-03 00:44:04 +01:00
|
|
|
DECLARE_OBJECT(NotificationCommand);
|
|
|
|
DECLARE_OBJECTNAME(NotificationCommand);
|
2013-06-13 11:33:00 +02:00
|
|
|
|
2014-11-08 21:17:16 +01:00
|
|
|
virtual Dictionary::Ptr Execute(const intrusive_ptr<Notification>& notification,
|
2018-07-25 14:33:28 +02:00
|
|
|
const User::Ptr& user, const CheckResult::Ptr& cr, const NotificationResult::Ptr& nr,
|
|
|
|
const NotificationType& type, const String& author, const String& comment,
|
2017-12-19 15:50:05 +01:00
|
|
|
const Dictionary::Ptr& resolvedMacros = nullptr,
|
|
|
|
bool useResolvedMacros = false);
|
2013-06-13 11:33:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* NOTIFICATIONCOMMAND_H */
|