mirror of
https://github.com/Icinga/icinga2.git
synced 2026-02-13 15:54:15 -05:00
19 lines
434 B
Text
19 lines
434 B
Text
namespace icinga
|
|
{
|
|
|
|
abstract class DynamicObject
|
|
{
|
|
[config] String __name (Name);
|
|
[config, get_protected] String __type (TypeName);
|
|
[config] Dictionary::Ptr methods;
|
|
[config] Dictionary::Ptr custom;
|
|
[config] Array::Ptr domains;
|
|
[config] Array::Ptr authorities;
|
|
[get_protected] bool active;
|
|
Dictionary::Ptr authority_info {
|
|
default {{{ return make_shared<Dictionary>(); }}}
|
|
};
|
|
[protected] Dictionary::Ptr extensions;
|
|
};
|
|
|
|
}
|