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