2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-06-13 11:33:00 +02:00
|
|
|
|
|
|
|
#ifndef COMMAND_H
|
|
|
|
#define COMMAND_H
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/i2-icinga.hpp"
|
2018-01-18 13:50:38 +01:00
|
|
|
#include "icinga/command-ti.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "remote/messageorigin.hpp"
|
2013-06-13 11:33:00 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A command.
|
|
|
|
*
|
2013-08-20 08:29:38 +02:00
|
|
|
* @ingroup icinga
|
2013-06-13 11:33:00 +02:00
|
|
|
*/
|
2017-12-31 07:22:16 +01:00
|
|
|
class Command : public ObjectImpl<Command>
|
2013-06-13 11:33:00 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-11-03 00:44:04 +01:00
|
|
|
DECLARE_OBJECT(Command);
|
2013-06-13 11:33:00 +02:00
|
|
|
|
|
|
|
//virtual Dictionary::Ptr Execute(const Object::Ptr& context) = 0;
|
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
void Validate(int types, const ValidationUtils& utils) override;
|
2013-06-13 11:33:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* COMMAND_H */
|