mirror of https://github.com/Icinga/icinga2.git
18 lines
377 B
Plaintext
18 lines
377 B
Plaintext
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;
|
|
[protected] Dictionary::Ptr extensions;
|
|
};
|
|
|
|
}
|