icinga2/lib/remote/objectqueryhandler.hpp
Johannes Schmidt a8401d2e93 Remove extra parameters from HTTP handler signature
These parameters are no longer needed since they were only used
by EventsHandler which was refactored in an earlier commit.
2025-08-06 14:00:42 +02:00

31 lines
631 B
C++

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef OBJECTQUERYHANDLER_H
#define OBJECTQUERYHANDLER_H
#include "remote/httphandler.hpp"
namespace icinga
{
class ObjectQueryHandler final : public HttpHandler
{
public:
DECLARE_PTR_TYPEDEFS(ObjectQueryHandler);
bool HandleRequest(
const WaitGroup::Ptr& waitGroup,
const HttpRequest& request,
HttpResponse& response,
boost::asio::yield_context& yc
) override;
private:
static Dictionary::Ptr SerializeObjectAttrs(const Object::Ptr& object, const String& attrPrefix,
const Array::Ptr& attrs, bool isJoin, bool allAttrs);
};
}
#endif /* OBJECTQUERYHANDLER_H */