2022-03-28 18:06:47 +02:00
|
|
|
/** Universal Data-exchange API request
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @author Steffen Vogel <svogel2@eonerc.rwth-aachen.de>
|
|
|
|
* @copyright 2014-2022, Institute for Automation of Complex Power Systems, EONERC
|
2022-07-04 18:20:03 +02:00
|
|
|
* @license Apache 2.0
|
2022-03-28 18:06:47 +02:00
|
|
|
*********************************************************************************/
|
|
|
|
|
|
|
|
#include <villas/api/requests/universal.hpp>
|
|
|
|
|
|
|
|
using namespace villas::node;
|
|
|
|
using namespace villas::node::api;
|
2022-12-14 17:39:50 +01:00
|
|
|
using namespace villas::node::api::universal;
|
2022-03-28 18:06:47 +02:00
|
|
|
|
|
|
|
void UniversalRequest::prepare()
|
|
|
|
{
|
|
|
|
NodeRequest::prepare();
|
|
|
|
|
|
|
|
api_node = dynamic_cast<APINode*>(node);
|
|
|
|
if (!api_node)
|
|
|
|
throw BadRequest("Node {} is not an univeral API node!", node->getNameShort());
|
|
|
|
}
|