icinga2/lib/db_ido/servicedbobject.hpp

42 lines
829 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef SERVICEDBOBJECT_H
#define SERVICEDBOBJECT_H
2014-05-25 16:23:35 +02:00
#include "db_ido/dbobject.hpp"
#include "base/configobject.hpp"
2014-05-25 16:23:35 +02:00
#include "icinga/service.hpp"
namespace icinga
{
/**
* A Service database object.
*
* @ingroup ido
*/
2018-01-04 06:11:04 +01:00
class ServiceDbObject final : public DbObject
{
public:
DECLARE_PTR_TYPEDEFS(ServiceDbObject);
2013-08-01 13:20:30 +02:00
ServiceDbObject(const DbType::Ptr& type, const String& name1, const String& name2);
static void StaticInitialize();
Dictionary::Ptr GetConfigFields() const override;
Dictionary::Ptr GetStatusFields() const override;
2013-07-24 10:55:04 +02:00
void OnConfigUpdateHeavy() override;
void OnConfigUpdateLight() override;
String CalculateConfigHash(const Dictionary::Ptr& configFields) const override;
private:
void DoCommonConfigUpdate();
};
}
#endif /* SERVICEDBOBJECT_H */