2013-10-26 09:41:45 +02:00
|
|
|
#include "base/dynamicobject.h"
|
2014-05-01 23:53:08 +02:00
|
|
|
#include "base/array.h"
|
2013-10-26 09:41:45 +02:00
|
|
|
|
|
|
|
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
|
|
|
};
|
2014-05-01 23:53:08 +02:00
|
|
|
[config] Array::Ptr groups {
|
|
|
|
default {{{ return make_shared<Array>(); }}}
|
|
|
|
};
|
2014-04-09 10:25:23 +02:00
|
|
|
[config] String period (PeriodRaw);
|
|
|
|
[config] Array::Ptr types;
|
|
|
|
int type_filter_real (TypeFilter);
|
|
|
|
[config] Array::Ptr states;
|
|
|
|
int state_filter_real (StateFilter);
|
2014-04-08 13:23:24 +02:00
|
|
|
|
|
|
|
[config] String email;
|
|
|
|
[config] String pager;
|
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
[state] bool enable_notifications;
|
|
|
|
[state] double last_notification;
|
|
|
|
};
|
|
|
|
|
2013-10-30 09:55:00 +01:00
|
|
|
}
|