IndividualExposureDataSubscriptionDocumentApiImpl.cpp 1.56 KB
Newer Older
yangjian's avatar
yangjian committed
1
/**
yangjian's avatar
yangjian committed
2 3 4 5 6 7 8 9 10 11 12
 * Nudr_DataRepository API OpenAPI file
 * Unified Data Repository Service. © 2020, 3GPP Organizational Partners (ARIB,
 * ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
 *
 * The version of the OpenAPI document: 2.1.2
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator
 * (https://openapi-generator.tech). https://openapi-generator.tech Do not edit
 * the class manually.
 */
yangjian's avatar
yangjian committed
13 14 15

#include "IndividualExposureDataSubscriptionDocumentApiImpl.h"

16 17 18 19 20
#include "logger.hpp"
#include "udr_app.hpp"
#include "udr_config.hpp"
using namespace config;
extern config::udr_config udr_cfg;
21
namespace oai::udr::api {
yangjian's avatar
yangjian committed
22

23
using namespace oai::udr::model;
yangjian's avatar
yangjian committed
24

yangjian's avatar
yangjian committed
25 26
IndividualExposureDataSubscriptionDocumentApiImpl::
    IndividualExposureDataSubscriptionDocumentApiImpl(
27 28 29 30 31
        std::shared_ptr<Pistache::Rest::Router> rtr, udr_app *udr_app_inst,
        std::string address)
    : IndividualExposureDataSubscriptionDocumentApi(rtr),
      m_udr_app(udr_app_inst),
      m_address(address) {}
yangjian's avatar
yangjian committed
32

yangjian's avatar
yangjian committed
33 34 35 36
void IndividualExposureDataSubscriptionDocumentApiImpl::
    delete_individual_exposure_data_subscription(
        const std::string &subId, Pistache::Http::ResponseWriter &response) {
  response.send(Pistache::Http::Code::Ok, "Do some magic\n");
yangjian's avatar
yangjian committed
37
}
yangjian's avatar
yangjian committed
38 39 40 41 42 43
void IndividualExposureDataSubscriptionDocumentApiImpl::
    replace_individual_exposure_data_subscription(
        const std::string &subId,
        const ExposureDataSubscription &exposureDataSubscription,
        Pistache::Http::ResponseWriter &response) {
  response.send(Pistache::Http::Code::Ok, "Do some magic\n");
yangjian's avatar
yangjian committed
44 45
}

46
}  // namespace oai::udr::api