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