2013-10-26 09:41:45 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2013-11-08 11:17:46 +01:00
|
|
|
abstract class DynamicObject
|
2013-10-26 09:41:45 +02:00
|
|
|
{
|
|
|
|
[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;
|
2013-12-14 07:36:49 +01:00
|
|
|
[get_protected] bool start_called;
|
|
|
|
[get_protected] bool stop_called;
|
2013-11-11 08:22:58 +01:00
|
|
|
Dictionary::Ptr authority_info;
|
2013-10-26 09:41:45 +02:00
|
|
|
[protected] Dictionary::Ptr extensions;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|