-
Stefan Spettel authoredStefan Spettel authored
IndividualSMPolicyDocumentApiImpl.cpp 1.46 KiB
/**
* Npcf_SMPolicyControl API
* Session Management Policy Control Service © 2020, 3GPP Organizational
* Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
*
* The version of the OpenAPI document: 1.1.1.alpha-5
*
*
* NOTE: This class is auto generated by OpenAPI Generator
* (https://openapi-generator.tech). https://openapi-generator.tech Do not edit
* the class manually.
*/
#include "IndividualSMPolicyDocumentApiImpl.h"
namespace oai {
namespace pcf {
namespace api {
using namespace oai::pcf::model;
IndividualSMPolicyDocumentApiImpl::IndividualSMPolicyDocumentApiImpl(
const std::shared_ptr<Pistache::Rest::Router>& rtr)
: IndividualSMPolicyDocumentApi(rtr) {}
void IndividualSMPolicyDocumentApiImpl::delete_sm_policy(
const std::string& smPolicyId, const SmPolicyDeleteData& smPolicyDeleteData,
Pistache::Http::ResponseWriter& response) {
response.send(Pistache::Http::Code::Ok, "Do some magic\n");
}
void IndividualSMPolicyDocumentApiImpl::get_sm_policy(
const std::string& smPolicyId, Pistache::Http::ResponseWriter& response) {
response.send(Pistache::Http::Code::Ok, "Do some magic\n");
}
void IndividualSMPolicyDocumentApiImpl::update_sm_policy(
const std::string& smPolicyId,
const SmPolicyUpdateContextData& smPolicyUpdateContextData,
Pistache::Http::ResponseWriter& response) {
response.send(Pistache::Http::Code::Ok, "Do some magic\n");
}
} // namespace api
} // namespace pcf
} // namespace oai