2013-11-13 14:56:31 +01:00
|
|
|
#include "base/dynamicobject.h"
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2014-04-05 22:17:20 +02:00
|
|
|
code {{{
|
2014-04-06 08:09:49 +02:00
|
|
|
class I2_ICINGA_API ScheduledDowntimeNameComposer : public NameComposer
|
2014-04-05 22:17:20 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-04-06 08:09:49 +02:00
|
|
|
virtual String MakeName(const String& shortName, const Dictionary::Ptr props) const;
|
2014-04-05 22:17:20 +02:00
|
|
|
};
|
|
|
|
}}}
|
|
|
|
|
2014-04-06 08:09:49 +02:00
|
|
|
class ScheduledDowntime : DynamicObject < ScheduledDowntimeNameComposer
|
2013-11-13 14:56:31 +01:00
|
|
|
{
|
2014-04-05 09:15:40 +02:00
|
|
|
[config, protected] String host_name;
|
|
|
|
[config, protected] String service_name;
|
2013-11-13 14:56:31 +01:00
|
|
|
|
|
|
|
[config] String author;
|
|
|
|
[config] String comment;
|
|
|
|
|
|
|
|
[config] double duration;
|
|
|
|
[config] bool fixed {
|
|
|
|
default {{{ return true; }}}
|
|
|
|
};
|
|
|
|
|
|
|
|
[config] Dictionary::Ptr ranges;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|