2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-01-28 14:18:27 +01:00
|
|
|
|
|
|
|
#ifndef OBJECTUTILS_H
|
|
|
|
#define OBJECTUTILS_H
|
|
|
|
|
|
|
|
#include "base/i2-base.hpp"
|
|
|
|
#include "base/string.hpp"
|
2017-08-23 14:18:28 +02:00
|
|
|
#include "base/array.hpp"
|
2015-01-28 14:18:27 +01:00
|
|
|
#include "icinga/service.hpp"
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup icinga
|
|
|
|
*/
|
2017-12-31 07:22:16 +01:00
|
|
|
class ObjectUtils
|
2015-01-28 14:18:27 +01:00
|
|
|
{
|
|
|
|
public:
|
2017-08-23 14:18:28 +02:00
|
|
|
static Service::Ptr GetService(const Value& host, const String& name);
|
|
|
|
static Array::Ptr GetServices(const Value& host);
|
2015-01-28 14:18:27 +01:00
|
|
|
|
|
|
|
private:
|
2018-01-04 04:25:35 +01:00
|
|
|
ObjectUtils();
|
2015-01-28 14:18:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* OBJECTUTILS_H */
|