icinga2/jsonrpc/rpcrequest.h

85 lines
2.4 KiB
C
Raw Normal View History

/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
2012-05-11 13:33:57 +02:00
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
2012-05-16 11:30:54 +02:00
#ifndef RPCREQUEST_H
#define RPCREQUEST_H
2012-04-18 15:22:25 +02:00
namespace icinga
{
2012-05-18 22:21:28 +02:00
/**
* A JSON-RPC request message.
*
* @ingroup jsonrpc
*/
2012-05-16 11:30:54 +02:00
class I2_JSONRPC_API RpcRequest : public MessagePart
2012-04-18 15:22:25 +02:00
{
public:
2012-05-16 11:30:54 +02:00
RpcRequest(void) : MessagePart() {
SetVersion("2.0");
}
2012-05-16 11:30:54 +02:00
RpcRequest(const MessagePart& message) : MessagePart(message) { }
2012-04-18 15:22:25 +02:00
inline bool GetVersion(string *value) const
{
2012-05-16 11:30:54 +02:00
return GetProperty("jsonrpc", value);
2012-04-18 15:22:25 +02:00
}
inline void SetVersion(const string& value)
{
2012-05-16 11:30:54 +02:00
SetProperty("jsonrpc", value);
2012-04-18 15:22:25 +02:00
}
inline bool GetMethod(string *value) const
{
2012-05-16 11:30:54 +02:00
return GetProperty("method", value);
2012-04-18 15:22:25 +02:00
}
inline void SetMethod(const string& value)
{
2012-05-16 11:30:54 +02:00
SetProperty("method", value);
2012-04-18 15:22:25 +02:00
}
2012-05-16 11:30:54 +02:00
inline bool GetParams(MessagePart *value) const
2012-04-18 15:22:25 +02:00
{
2012-05-16 11:30:54 +02:00
return GetProperty("params", value);
2012-04-18 15:22:25 +02:00
}
2012-05-16 11:30:54 +02:00
inline void SetParams(const MessagePart& value)
2012-04-18 15:22:25 +02:00
{
2012-05-16 11:30:54 +02:00
SetProperty("params", value);
2012-04-18 15:22:25 +02:00
}
inline bool GetID(string *value) const
{
2012-05-16 11:30:54 +02:00
return GetProperty("id", value);
2012-04-18 15:22:25 +02:00
}
inline void SetID(const string& value)
{
2012-05-16 11:30:54 +02:00
SetProperty("id", value);
2012-04-18 15:22:25 +02:00
}
};
}
2012-05-16 11:30:54 +02:00
#endif /* RPCREQUEST_H */