2013-10-26 09:41:45 +02:00
|
|
|
#include "base/dynamicobject.h"
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
class User : DynamicObject
|
|
|
|
{
|
|
|
|
[config] String display_name {
|
2013-10-30 09:55:00 +01:00
|
|
|
get {{{
|
|
|
|
if (m_DisplayName.IsEmpty())
|
|
|
|
return GetName();
|
|
|
|
else
|
|
|
|
return m_DisplayName;
|
|
|
|
}}}
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
|
|
|
[config] Dictionary::Ptr macros;
|
|
|
|
[config] Array::Ptr groups;
|
|
|
|
[config] String notification_period (NotificationPeriodRaw);
|
|
|
|
[config] int notification_type_filter {
|
|
|
|
default {{{ return ~(int)0; }}}
|
|
|
|
};
|
|
|
|
[config] int notification_state_filter {
|
|
|
|
default {{{ return ~(int)0; }}}
|
|
|
|
};
|
|
|
|
[state] bool enable_notifications;
|
|
|
|
[state] double last_notification;
|
|
|
|
};
|
|
|
|
|
2013-10-30 09:55:00 +01:00
|
|
|
}
|