Commit 08db59af authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

Update namespace for api_server/impl

parent 408bbc1c
...@@ -14,12 +14,9 @@ ...@@ -14,12 +14,9 @@
#include "AMF3GPPAccessRegistrationDocumentApiImpl.h" #include "AMF3GPPAccessRegistrationDocumentApiImpl.h"
#include "logger.hpp" #include "logger.hpp"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
AMF3GPPAccessRegistrationDocumentApiImpl:: AMF3GPPAccessRegistrationDocumentApiImpl::
AMF3GPPAccessRegistrationDocumentApiImpl( AMF3GPPAccessRegistrationDocumentApiImpl(
...@@ -416,7 +413,4 @@ void AMF3GPPAccessRegistrationDocumentApiImpl::query_amf_context3gpp( ...@@ -416,7 +413,4 @@ void AMF3GPPAccessRegistrationDocumentApiImpl::query_amf_context3gpp(
mysql_free_result(res); mysql_free_result(res);
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -38,14 +38,11 @@ ...@@ -38,14 +38,11 @@
#include <mysql/mysql.h> #include <mysql/mysql.h>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class AMF3GPPAccessRegistrationDocumentApiImpl : public org::openapitools::server::api::AMF3GPPAccessRegistrationDocumentApi { class AMF3GPPAccessRegistrationDocumentApiImpl : public oai::udr::api::AMF3GPPAccessRegistrationDocumentApi {
public: public:
AMF3GPPAccessRegistrationDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>, MYSQL *mysql); AMF3GPPAccessRegistrationDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>, MYSQL *mysql);
~AMF3GPPAccessRegistrationDocumentApiImpl() {} ~AMF3GPPAccessRegistrationDocumentApiImpl() {}
...@@ -59,9 +56,9 @@ private: ...@@ -59,9 +56,9 @@ private:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "AMFNon3GPPAccessRegistrationDocumentApiImpl.h" #include "AMFNon3GPPAccessRegistrationDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
AMFNon3GPPAccessRegistrationDocumentApiImpl:: AMFNon3GPPAccessRegistrationDocumentApiImpl::
AMFNon3GPPAccessRegistrationDocumentApiImpl( AMFNon3GPPAccessRegistrationDocumentApiImpl(
...@@ -45,7 +42,4 @@ void AMFNon3GPPAccessRegistrationDocumentApiImpl::query_amf_context_non3gpp( ...@@ -45,7 +42,4 @@ void AMFNon3GPPAccessRegistrationDocumentApiImpl::query_amf_context_non3gpp(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -37,14 +37,11 @@ ...@@ -37,14 +37,11 @@
#include <string> #include <string>
#include <vector> #include <vector>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class AMFNon3GPPAccessRegistrationDocumentApiImpl : public org::openapitools::server::api::AMFNon3GPPAccessRegistrationDocumentApi { class AMFNon3GPPAccessRegistrationDocumentApiImpl : public oai::udr::api::AMFNon3GPPAccessRegistrationDocumentApi {
public: public:
AMFNon3GPPAccessRegistrationDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); AMFNon3GPPAccessRegistrationDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~AMFNon3GPPAccessRegistrationDocumentApiImpl() {} ~AMFNon3GPPAccessRegistrationDocumentApiImpl() {}
...@@ -56,9 +53,9 @@ public: ...@@ -56,9 +53,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "AccessAndMobilityDataApiImpl.h" #include "AccessAndMobilityDataApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
AccessAndMobilityDataApiImpl::AccessAndMobilityDataApiImpl( AccessAndMobilityDataApiImpl::AccessAndMobilityDataApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -44,7 +41,4 @@ void AccessAndMobilityDataApiImpl::update_access_and_mobility_data( ...@@ -44,7 +41,4 @@ void AccessAndMobilityDataApiImpl::update_access_and_mobility_data(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -33,14 +33,11 @@ ...@@ -33,14 +33,11 @@
#include "ProblemDetails.h" #include "ProblemDetails.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class AccessAndMobilityDataApiImpl : public org::openapitools::server::api::AccessAndMobilityDataApi { class AccessAndMobilityDataApiImpl : public oai::udr::api::AccessAndMobilityDataApi {
public: public:
AccessAndMobilityDataApiImpl(std::shared_ptr<Pistache::Rest::Router>); AccessAndMobilityDataApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~AccessAndMobilityDataApiImpl() {} ~AccessAndMobilityDataApiImpl() {}
...@@ -53,9 +50,9 @@ public: ...@@ -53,9 +50,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "AccessAndMobilityPolicyDataDocumentApiImpl.h" #include "AccessAndMobilityPolicyDataDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
AccessAndMobilityPolicyDataDocumentApiImpl:: AccessAndMobilityPolicyDataDocumentApiImpl::
AccessAndMobilityPolicyDataDocumentApiImpl( AccessAndMobilityPolicyDataDocumentApiImpl(
...@@ -31,7 +28,4 @@ void AccessAndMobilityPolicyDataDocumentApiImpl:: ...@@ -31,7 +28,4 @@ void AccessAndMobilityPolicyDataDocumentApiImpl::
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -33,14 +33,11 @@ ...@@ -33,14 +33,11 @@
#include "ProblemDetails.h" #include "ProblemDetails.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class AccessAndMobilityPolicyDataDocumentApiImpl : public org::openapitools::server::api::AccessAndMobilityPolicyDataDocumentApi { class AccessAndMobilityPolicyDataDocumentApiImpl : public oai::udr::api::AccessAndMobilityPolicyDataDocumentApi {
public: public:
AccessAndMobilityPolicyDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); AccessAndMobilityPolicyDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~AccessAndMobilityPolicyDataDocumentApiImpl() {} ~AccessAndMobilityPolicyDataDocumentApiImpl() {}
...@@ -50,9 +47,9 @@ public: ...@@ -50,9 +47,9 @@ public:
}; };
} }
}
}
}
......
...@@ -14,12 +14,9 @@ ...@@ -14,12 +14,9 @@
#include "AccessAndMobilitySubscriptionDataDocumentApiImpl.h" #include "AccessAndMobilitySubscriptionDataDocumentApiImpl.h"
#include "logger.hpp" #include "logger.hpp"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
AccessAndMobilitySubscriptionDataDocumentApiImpl:: AccessAndMobilitySubscriptionDataDocumentApiImpl::
AccessAndMobilitySubscriptionDataDocumentApiImpl( AccessAndMobilitySubscriptionDataDocumentApiImpl(
...@@ -299,7 +296,4 @@ void AccessAndMobilitySubscriptionDataDocumentApiImpl::query_am_data( ...@@ -299,7 +296,4 @@ void AccessAndMobilitySubscriptionDataDocumentApiImpl::query_am_data(
mysql_free_result(res); mysql_free_result(res);
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -34,14 +34,11 @@ ...@@ -34,14 +34,11 @@
#include <mysql/mysql.h> #include <mysql/mysql.h>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class AccessAndMobilitySubscriptionDataDocumentApiImpl : public org::openapitools::server::api::AccessAndMobilitySubscriptionDataDocumentApi { class AccessAndMobilitySubscriptionDataDocumentApiImpl : public oai::udr::api::AccessAndMobilitySubscriptionDataDocumentApi {
public: public:
AccessAndMobilitySubscriptionDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>,MYSQL *mysql); AccessAndMobilitySubscriptionDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>,MYSQL *mysql);
~AccessAndMobilitySubscriptionDataDocumentApiImpl() {} ~AccessAndMobilitySubscriptionDataDocumentApiImpl() {}
...@@ -54,9 +51,9 @@ private: ...@@ -54,9 +51,9 @@ private:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "AmfSubscriptionInfoDocumentApiImpl.h" #include "AmfSubscriptionInfoDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
AmfSubscriptionInfoDocumentApiImpl::AmfSubscriptionInfoDocumentApiImpl( AmfSubscriptionInfoDocumentApiImpl::AmfSubscriptionInfoDocumentApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -32,7 +29,4 @@ void AmfSubscriptionInfoDocumentApiImpl::modify_amf_subscription_info( ...@@ -32,7 +29,4 @@ void AmfSubscriptionInfoDocumentApiImpl::modify_amf_subscription_info(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -35,14 +35,11 @@ ...@@ -35,14 +35,11 @@
#include <string> #include <string>
#include <vector> #include <vector>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class AmfSubscriptionInfoDocumentApiImpl : public org::openapitools::server::api::AmfSubscriptionInfoDocumentApi { class AmfSubscriptionInfoDocumentApiImpl : public oai::udr::api::AmfSubscriptionInfoDocumentApi {
public: public:
AmfSubscriptionInfoDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); AmfSubscriptionInfoDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~AmfSubscriptionInfoDocumentApiImpl() {} ~AmfSubscriptionInfoDocumentApiImpl() {}
...@@ -52,9 +49,9 @@ public: ...@@ -52,9 +49,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "ApplicationDataSubscriptionsCollectionApiImpl.h" #include "ApplicationDataSubscriptionsCollectionApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
ApplicationDataSubscriptionsCollectionApiImpl:: ApplicationDataSubscriptionsCollectionApiImpl::
ApplicationDataSubscriptionsCollectionApiImpl( ApplicationDataSubscriptionsCollectionApiImpl(
...@@ -38,7 +35,4 @@ void ApplicationDataSubscriptionsCollectionApiImpl:: ...@@ -38,7 +35,4 @@ void ApplicationDataSubscriptionsCollectionApiImpl::
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -33,14 +33,11 @@ ...@@ -33,14 +33,11 @@
#include "DataFilter.h" #include "DataFilter.h"
#include "ProblemDetails.h" #include "ProblemDetails.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class ApplicationDataSubscriptionsCollectionApiImpl : public org::openapitools::server::api::ApplicationDataSubscriptionsCollectionApi { class ApplicationDataSubscriptionsCollectionApiImpl : public oai::udr::api::ApplicationDataSubscriptionsCollectionApi {
public: public:
ApplicationDataSubscriptionsCollectionApiImpl(std::shared_ptr<Pistache::Rest::Router>); ApplicationDataSubscriptionsCollectionApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~ApplicationDataSubscriptionsCollectionApiImpl() {} ~ApplicationDataSubscriptionsCollectionApiImpl() {}
...@@ -51,9 +48,9 @@ public: ...@@ -51,9 +48,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "AuthenticationSoRDocumentApiImpl.h" #include "AuthenticationSoRDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
AuthenticationSoRDocumentApiImpl::AuthenticationSoRDocumentApiImpl( AuthenticationSoRDocumentApiImpl::AuthenticationSoRDocumentApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -37,7 +34,4 @@ void AuthenticationSoRDocumentApiImpl::query_auth_so_r( ...@@ -37,7 +34,4 @@ void AuthenticationSoRDocumentApiImpl::query_auth_so_r(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -32,14 +32,11 @@ ...@@ -32,14 +32,11 @@
#include "SorData.h" #include "SorData.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class AuthenticationSoRDocumentApiImpl : public org::openapitools::server::api::AuthenticationSoRDocumentApi { class AuthenticationSoRDocumentApiImpl : public oai::udr::api::AuthenticationSoRDocumentApi {
public: public:
AuthenticationSoRDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); AuthenticationSoRDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~AuthenticationSoRDocumentApiImpl() {} ~AuthenticationSoRDocumentApiImpl() {}
...@@ -50,9 +47,9 @@ public: ...@@ -50,9 +47,9 @@ public:
}; };
} }
}
}
}
......
...@@ -14,12 +14,9 @@ ...@@ -14,12 +14,9 @@
#include "AuthenticationStatusDocumentApiImpl.h" #include "AuthenticationStatusDocumentApiImpl.h"
#include "logger.hpp" #include "logger.hpp"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
AuthenticationStatusDocumentApiImpl::AuthenticationStatusDocumentApiImpl( AuthenticationStatusDocumentApiImpl::AuthenticationStatusDocumentApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr, MYSQL *mysql) std::shared_ptr<Pistache::Rest::Router> rtr, MYSQL *mysql)
...@@ -178,7 +175,4 @@ void AuthenticationStatusDocumentApiImpl::query_authentication_status( ...@@ -178,7 +175,4 @@ void AuthenticationStatusDocumentApiImpl::query_authentication_status(
mysql_free_result(res); mysql_free_result(res);
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -34,14 +34,11 @@ ...@@ -34,14 +34,11 @@
#include <mysql/mysql.h> #include <mysql/mysql.h>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class AuthenticationStatusDocumentApiImpl : public org::openapitools::server::api::AuthenticationStatusDocumentApi { class AuthenticationStatusDocumentApiImpl : public oai::udr::api::AuthenticationStatusDocumentApi {
public: public:
AuthenticationStatusDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>,MYSQL *mysql); AuthenticationStatusDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>,MYSQL *mysql);
~AuthenticationStatusDocumentApiImpl() {} ~AuthenticationStatusDocumentApiImpl() {}
...@@ -56,9 +53,9 @@ private: ...@@ -56,9 +53,9 @@ private:
}; };
} }
}
}
}
......
...@@ -17,12 +17,9 @@ ...@@ -17,12 +17,9 @@
#include <AuthenticationSubscription.h> #include <AuthenticationSubscription.h>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
AuthenticationSubscriptionDocumentApiImpl:: AuthenticationSubscriptionDocumentApiImpl::
AuthenticationSubscriptionDocumentApiImpl( AuthenticationSubscriptionDocumentApiImpl(
...@@ -195,7 +192,4 @@ void AuthenticationSubscriptionDocumentApiImpl:: ...@@ -195,7 +192,4 @@ void AuthenticationSubscriptionDocumentApiImpl::
mysql_free_result(res); mysql_free_result(res);
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -37,14 +37,11 @@ ...@@ -37,14 +37,11 @@
#include <mysql/mysql.h> #include <mysql/mysql.h>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class AuthenticationSubscriptionDocumentApiImpl : public org::openapitools::server::api::AuthenticationSubscriptionDocumentApi { class AuthenticationSubscriptionDocumentApiImpl : public oai::udr::api::AuthenticationSubscriptionDocumentApi {
public: public:
AuthenticationSubscriptionDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>,MYSQL *mysql); AuthenticationSubscriptionDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>,MYSQL *mysql);
~AuthenticationSubscriptionDocumentApiImpl() {} ~AuthenticationSubscriptionDocumentApiImpl() {}
...@@ -58,9 +55,9 @@ private: ...@@ -58,9 +55,9 @@ private:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "AuthenticationUPUDocumentApiImpl.h" #include "AuthenticationUPUDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
AuthenticationUPUDocumentApiImpl::AuthenticationUPUDocumentApiImpl( AuthenticationUPUDocumentApiImpl::AuthenticationUPUDocumentApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -37,7 +34,4 @@ void AuthenticationUPUDocumentApiImpl::query_auth_upu( ...@@ -37,7 +34,4 @@ void AuthenticationUPUDocumentApiImpl::query_auth_upu(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -32,14 +32,11 @@ ...@@ -32,14 +32,11 @@
#include "UpuData.h" #include "UpuData.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class AuthenticationUPUDocumentApiImpl : public org::openapitools::server::api::AuthenticationUPUDocumentApi { class AuthenticationUPUDocumentApiImpl : public oai::udr::api::AuthenticationUPUDocumentApi {
public: public:
AuthenticationUPUDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); AuthenticationUPUDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~AuthenticationUPUDocumentApiImpl() {} ~AuthenticationUPUDocumentApiImpl() {}
...@@ -50,9 +47,9 @@ public: ...@@ -50,9 +47,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "BdtDataStoreApiImpl.h" #include "BdtDataStoreApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
BdtDataStoreApiImpl::BdtDataStoreApiImpl( BdtDataStoreApiImpl::BdtDataStoreApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -31,7 +28,4 @@ void BdtDataStoreApiImpl::read_bdt_data( ...@@ -31,7 +28,4 @@ void BdtDataStoreApiImpl::read_bdt_data(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -33,14 +33,11 @@ ...@@ -33,14 +33,11 @@
#include "ProblemDetails.h" #include "ProblemDetails.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class BdtDataStoreApiImpl : public org::openapitools::server::api::BdtDataStoreApi { class BdtDataStoreApiImpl : public oai::udr::api::BdtDataStoreApi {
public: public:
BdtDataStoreApiImpl(std::shared_ptr<Pistache::Rest::Router>); BdtDataStoreApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~BdtDataStoreApiImpl() {} ~BdtDataStoreApiImpl() {}
...@@ -50,9 +47,9 @@ public: ...@@ -50,9 +47,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "BdtPolicyDataStoreApiImpl.h" #include "BdtPolicyDataStoreApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
BdtPolicyDataStoreApiImpl::BdtPolicyDataStoreApiImpl( BdtPolicyDataStoreApiImpl::BdtPolicyDataStoreApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -32,7 +29,4 @@ void BdtPolicyDataStoreApiImpl::read_bdt_policy_data( ...@@ -32,7 +29,4 @@ void BdtPolicyDataStoreApiImpl::read_bdt_policy_data(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -33,14 +33,11 @@ ...@@ -33,14 +33,11 @@
#include "ProblemDetails.h" #include "ProblemDetails.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class BdtPolicyDataStoreApiImpl : public org::openapitools::server::api::BdtPolicyDataStoreApi { class BdtPolicyDataStoreApiImpl : public oai::udr::api::BdtPolicyDataStoreApi {
public: public:
BdtPolicyDataStoreApiImpl(std::shared_ptr<Pistache::Rest::Router>); BdtPolicyDataStoreApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~BdtPolicyDataStoreApiImpl() {} ~BdtPolicyDataStoreApiImpl() {}
...@@ -50,9 +47,9 @@ public: ...@@ -50,9 +47,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "CAGACKDocumentApiImpl.h" #include "CAGACKDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
CAGACKDocumentApiImpl::CAGACKDocumentApiImpl( CAGACKDocumentApiImpl::CAGACKDocumentApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -31,7 +28,4 @@ void CAGACKDocumentApiImpl::query_cag_ack( ...@@ -31,7 +28,4 @@ void CAGACKDocumentApiImpl::query_cag_ack(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -32,14 +32,11 @@ ...@@ -32,14 +32,11 @@
#include "CagAckData.h" #include "CagAckData.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class CAGACKDocumentApiImpl : public org::openapitools::server::api::CAGACKDocumentApi { class CAGACKDocumentApiImpl : public oai::udr::api::CAGACKDocumentApi {
public: public:
CAGACKDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); CAGACKDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~CAGACKDocumentApiImpl() {} ~CAGACKDocumentApiImpl() {}
...@@ -49,9 +46,9 @@ public: ...@@ -49,9 +46,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "CAGUpdateAckDocumentApiImpl.h" #include "CAGUpdateAckDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
CAGUpdateAckDocumentApiImpl::CAGUpdateAckDocumentApiImpl( CAGUpdateAckDocumentApiImpl::CAGUpdateAckDocumentApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -31,7 +28,4 @@ void CAGUpdateAckDocumentApiImpl::create_cag_update_ack( ...@@ -31,7 +28,4 @@ void CAGUpdateAckDocumentApiImpl::create_cag_update_ack(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -32,14 +32,11 @@ ...@@ -32,14 +32,11 @@
#include "CagAckData.h" #include "CagAckData.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class CAGUpdateAckDocumentApiImpl : public org::openapitools::server::api::CAGUpdateAckDocumentApi { class CAGUpdateAckDocumentApiImpl : public oai::udr::api::CAGUpdateAckDocumentApi {
public: public:
CAGUpdateAckDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); CAGUpdateAckDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~CAGUpdateAckDocumentApiImpl() {} ~CAGUpdateAckDocumentApiImpl() {}
...@@ -49,9 +46,9 @@ public: ...@@ -49,9 +46,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "Class5GVNGroupsInternalDocumentApiImpl.h" #include "Class5GVNGroupsInternalDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
Class5GVNGroupsInternalDocumentApiImpl::Class5GVNGroupsInternalDocumentApiImpl( Class5GVNGroupsInternalDocumentApiImpl::Class5GVNGroupsInternalDocumentApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -30,7 +27,4 @@ void Class5GVNGroupsInternalDocumentApiImpl::query5_g_vn_group_internal( ...@@ -30,7 +27,4 @@ void Class5GVNGroupsInternalDocumentApiImpl::query5_g_vn_group_internal(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -32,14 +32,11 @@ ...@@ -32,14 +32,11 @@
#include "5GVnGroupConfiguration.h" #include "5GVnGroupConfiguration.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class Class5GVNGroupsInternalDocumentApiImpl : public org::openapitools::server::api::Class5GVNGroupsInternalDocumentApi { class Class5GVNGroupsInternalDocumentApiImpl : public oai::udr::api::Class5GVNGroupsInternalDocumentApi {
public: public:
Class5GVNGroupsInternalDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); Class5GVNGroupsInternalDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~Class5GVNGroupsInternalDocumentApiImpl() {} ~Class5GVNGroupsInternalDocumentApiImpl() {}
...@@ -49,9 +46,9 @@ public: ...@@ -49,9 +46,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "Class5GVNGroupsStoreApiImpl.h" #include "Class5GVNGroupsStoreApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
Class5GVNGroupsStoreApiImpl::Class5GVNGroupsStoreApiImpl( Class5GVNGroupsStoreApiImpl::Class5GVNGroupsStoreApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -30,7 +27,4 @@ void Class5GVNGroupsStoreApiImpl::query5_g_vn_group( ...@@ -30,7 +27,4 @@ void Class5GVNGroupsStoreApiImpl::query5_g_vn_group(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -32,14 +32,11 @@ ...@@ -32,14 +32,11 @@
#include "5GVnGroupConfiguration.h" #include "5GVnGroupConfiguration.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class Class5GVNGroupsStoreApiImpl : public org::openapitools::server::api::Class5GVNGroupsStoreApi { class Class5GVNGroupsStoreApiImpl : public oai::udr::api::Class5GVNGroupsStoreApi {
public: public:
Class5GVNGroupsStoreApiImpl(std::shared_ptr<Pistache::Rest::Router>); Class5GVNGroupsStoreApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~Class5GVNGroupsStoreApiImpl() {} ~Class5GVNGroupsStoreApiImpl() {}
...@@ -49,9 +46,9 @@ public: ...@@ -49,9 +46,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "Class5GVnGroupConfigurationDocumentApiImpl.h" #include "Class5GVnGroupConfigurationDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
Class5GVnGroupConfigurationDocumentApiImpl:: Class5GVnGroupConfigurationDocumentApiImpl::
Class5GVnGroupConfigurationDocumentApiImpl( Class5GVnGroupConfigurationDocumentApiImpl(
...@@ -32,7 +29,4 @@ void Class5GVnGroupConfigurationDocumentApiImpl::create5_g_vn_group( ...@@ -32,7 +29,4 @@ void Class5GVnGroupConfigurationDocumentApiImpl::create5_g_vn_group(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -33,14 +33,11 @@ ...@@ -33,14 +33,11 @@
#include "ProblemDetails.h" #include "ProblemDetails.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class Class5GVnGroupConfigurationDocumentApiImpl : public org::openapitools::server::api::Class5GVnGroupConfigurationDocumentApi { class Class5GVnGroupConfigurationDocumentApiImpl : public oai::udr::api::Class5GVnGroupConfigurationDocumentApi {
public: public:
Class5GVnGroupConfigurationDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); Class5GVnGroupConfigurationDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~Class5GVnGroupConfigurationDocumentApiImpl() {} ~Class5GVnGroupConfigurationDocumentApiImpl() {}
...@@ -50,9 +47,9 @@ public: ...@@ -50,9 +47,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "ContextDataDocumentApiImpl.h" #include "ContextDataDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
ContextDataDocumentApiImpl::ContextDataDocumentApiImpl( ContextDataDocumentApiImpl::ContextDataDocumentApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -30,7 +27,4 @@ ContextDataDocumentApiImpl::ContextDataDocumentApiImpl( ...@@ -30,7 +27,4 @@ ContextDataDocumentApiImpl::ContextDataDocumentApiImpl(
// response.send(Pistache::Http::Code::Ok, "Do some magic\n"); // response.send(Pistache::Http::Code::Ok, "Do some magic\n");
//} //}
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -34,14 +34,11 @@ ...@@ -34,14 +34,11 @@
//#include "Set.h" //#include "Set.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class ContextDataDocumentApiImpl : public org::openapitools::server::api::ContextDataDocumentApi { class ContextDataDocumentApiImpl : public oai::udr::api::ContextDataDocumentApi {
public: public:
ContextDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); ContextDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~ContextDataDocumentApiImpl() {} ~ContextDataDocumentApiImpl() {}
...@@ -51,9 +48,9 @@ public: ...@@ -51,9 +48,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,10 +13,7 @@ ...@@ -13,10 +13,7 @@
#include "Delete5GVnGroupApiImpl.h" #include "Delete5GVnGroupApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
Delete5GVnGroupApiImpl::Delete5GVnGroupApiImpl( Delete5GVnGroupApiImpl::Delete5GVnGroupApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -28,7 +25,4 @@ void Delete5GVnGroupApiImpl::delete5_g_vn_group( ...@@ -28,7 +25,4 @@ void Delete5GVnGroupApiImpl::delete5_g_vn_group(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -31,14 +31,11 @@ ...@@ -31,14 +31,11 @@
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
class Delete5GVnGroupApiImpl : public org::openapitools::server::api::Delete5GVnGroupApi { class Delete5GVnGroupApiImpl : public oai::udr::api::Delete5GVnGroupApi {
public: public:
Delete5GVnGroupApiImpl(std::shared_ptr<Pistache::Rest::Router>); Delete5GVnGroupApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~Delete5GVnGroupApiImpl() {} ~Delete5GVnGroupApiImpl() {}
...@@ -48,9 +45,9 @@ public: ...@@ -48,9 +45,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "EnhancedCoverageRestrictionDataApiImpl.h" #include "EnhancedCoverageRestrictionDataApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
EnhancedCoverageRestrictionDataApiImpl::EnhancedCoverageRestrictionDataApiImpl( EnhancedCoverageRestrictionDataApiImpl::EnhancedCoverageRestrictionDataApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -33,7 +30,4 @@ void EnhancedCoverageRestrictionDataApiImpl::query_coverage_restriction_data( ...@@ -33,7 +30,4 @@ void EnhancedCoverageRestrictionDataApiImpl::query_coverage_restriction_data(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -32,14 +32,11 @@ ...@@ -32,14 +32,11 @@
#include "EnhancedCoverageRestrictionData.h" #include "EnhancedCoverageRestrictionData.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class EnhancedCoverageRestrictionDataApiImpl : public org::openapitools::server::api::EnhancedCoverageRestrictionDataApi { class EnhancedCoverageRestrictionDataApiImpl : public oai::udr::api::EnhancedCoverageRestrictionDataApi {
public: public:
EnhancedCoverageRestrictionDataApiImpl(std::shared_ptr<Pistache::Rest::Router>); EnhancedCoverageRestrictionDataApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~EnhancedCoverageRestrictionDataApiImpl() {} ~EnhancedCoverageRestrictionDataApiImpl() {}
...@@ -49,9 +46,9 @@ public: ...@@ -49,9 +46,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,10 +13,7 @@ ...@@ -13,10 +13,7 @@
#include "EventAMFSubscriptionInfoDocumentApiImpl.h" #include "EventAMFSubscriptionInfoDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
EventAMFSubscriptionInfoDocumentApiImpl:: EventAMFSubscriptionInfoDocumentApiImpl::
EventAMFSubscriptionInfoDocumentApiImpl( EventAMFSubscriptionInfoDocumentApiImpl(
...@@ -29,7 +26,4 @@ void EventAMFSubscriptionInfoDocumentApiImpl::remove_amf_subscriptions_info( ...@@ -29,7 +26,4 @@ void EventAMFSubscriptionInfoDocumentApiImpl::remove_amf_subscriptions_info(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -31,14 +31,11 @@ ...@@ -31,14 +31,11 @@
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
class EventAMFSubscriptionInfoDocumentApiImpl : public org::openapitools::server::api::EventAMFSubscriptionInfoDocumentApi { class EventAMFSubscriptionInfoDocumentApiImpl : public oai::udr::api::EventAMFSubscriptionInfoDocumentApi {
public: public:
EventAMFSubscriptionInfoDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); EventAMFSubscriptionInfoDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~EventAMFSubscriptionInfoDocumentApiImpl() {} ~EventAMFSubscriptionInfoDocumentApiImpl() {}
...@@ -48,9 +45,9 @@ public: ...@@ -48,9 +45,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "EventExposureDataDocumentApiImpl.h" #include "EventExposureDataDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
EventExposureDataDocumentApiImpl::EventExposureDataDocumentApiImpl( EventExposureDataDocumentApiImpl::EventExposureDataDocumentApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -32,7 +29,4 @@ void EventExposureDataDocumentApiImpl::query_ee_data( ...@@ -32,7 +29,4 @@ void EventExposureDataDocumentApiImpl::query_ee_data(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -32,14 +32,11 @@ ...@@ -32,14 +32,11 @@
#include "EeProfileData.h" #include "EeProfileData.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class EventExposureDataDocumentApiImpl : public org::openapitools::server::api::EventExposureDataDocumentApi { class EventExposureDataDocumentApiImpl : public oai::udr::api::EventExposureDataDocumentApi {
public: public:
EventExposureDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); EventExposureDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~EventExposureDataDocumentApiImpl() {} ~EventExposureDataDocumentApiImpl() {}
...@@ -49,9 +46,9 @@ public: ...@@ -49,9 +46,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "EventExposureGroupSubscriptionDocumentApiImpl.h" #include "EventExposureGroupSubscriptionDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
EventExposureGroupSubscriptionDocumentApiImpl:: EventExposureGroupSubscriptionDocumentApiImpl::
EventExposureGroupSubscriptionDocumentApiImpl( EventExposureGroupSubscriptionDocumentApiImpl(
...@@ -52,7 +49,4 @@ void EventExposureGroupSubscriptionDocumentApiImpl:: ...@@ -52,7 +49,4 @@ void EventExposureGroupSubscriptionDocumentApiImpl::
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -37,14 +37,11 @@ ...@@ -37,14 +37,11 @@
#include <string> #include <string>
#include <vector> #include <vector>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class EventExposureGroupSubscriptionDocumentApiImpl : public org::openapitools::server::api::EventExposureGroupSubscriptionDocumentApi { class EventExposureGroupSubscriptionDocumentApiImpl : public oai::udr::api::EventExposureGroupSubscriptionDocumentApi {
public: public:
EventExposureGroupSubscriptionDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); EventExposureGroupSubscriptionDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~EventExposureGroupSubscriptionDocumentApiImpl() {} ~EventExposureGroupSubscriptionDocumentApiImpl() {}
...@@ -57,9 +54,9 @@ public: ...@@ -57,9 +54,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "EventExposureGroupSubscriptionsCollectionApiImpl.h" #include "EventExposureGroupSubscriptionsCollectionApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
EventExposureGroupSubscriptionsCollectionApiImpl:: EventExposureGroupSubscriptionsCollectionApiImpl::
EventExposureGroupSubscriptionsCollectionApiImpl( EventExposureGroupSubscriptionsCollectionApiImpl(
...@@ -39,7 +36,4 @@ void EventExposureGroupSubscriptionsCollectionApiImpl:: ...@@ -39,7 +36,4 @@ void EventExposureGroupSubscriptionsCollectionApiImpl::
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -32,14 +32,11 @@ ...@@ -32,14 +32,11 @@
#include "EeSubscription.h" #include "EeSubscription.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class EventExposureGroupSubscriptionsCollectionApiImpl : public org::openapitools::server::api::EventExposureGroupSubscriptionsCollectionApi { class EventExposureGroupSubscriptionsCollectionApiImpl : public oai::udr::api::EventExposureGroupSubscriptionsCollectionApi {
public: public:
EventExposureGroupSubscriptionsCollectionApiImpl(std::shared_ptr<Pistache::Rest::Router>); EventExposureGroupSubscriptionsCollectionApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~EventExposureGroupSubscriptionsCollectionApiImpl() {} ~EventExposureGroupSubscriptionsCollectionApiImpl() {}
...@@ -50,9 +47,9 @@ public: ...@@ -50,9 +47,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "EventExposureSubscriptionDocumentApiImpl.h" #include "EventExposureSubscriptionDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
EventExposureSubscriptionDocumentApiImpl:: EventExposureSubscriptionDocumentApiImpl::
EventExposureSubscriptionDocumentApiImpl( EventExposureSubscriptionDocumentApiImpl(
...@@ -49,7 +46,4 @@ void EventExposureSubscriptionDocumentApiImpl::update_eesubscriptions( ...@@ -49,7 +46,4 @@ void EventExposureSubscriptionDocumentApiImpl::update_eesubscriptions(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -37,14 +37,11 @@ ...@@ -37,14 +37,11 @@
#include <string> #include <string>
#include <vector> #include <vector>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class EventExposureSubscriptionDocumentApiImpl : public org::openapitools::server::api::EventExposureSubscriptionDocumentApi { class EventExposureSubscriptionDocumentApiImpl : public oai::udr::api::EventExposureSubscriptionDocumentApi {
public: public:
EventExposureSubscriptionDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); EventExposureSubscriptionDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~EventExposureSubscriptionDocumentApiImpl() {} ~EventExposureSubscriptionDocumentApiImpl() {}
...@@ -57,9 +54,9 @@ public: ...@@ -57,9 +54,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "EventExposureSubscriptionsCollectionApiImpl.h" #include "EventExposureSubscriptionsCollectionApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
EventExposureSubscriptionsCollectionApiImpl:: EventExposureSubscriptionsCollectionApiImpl::
EventExposureSubscriptionsCollectionApiImpl( EventExposureSubscriptionsCollectionApiImpl(
...@@ -37,7 +34,4 @@ void EventExposureSubscriptionsCollectionApiImpl::queryeesubscriptions( ...@@ -37,7 +34,4 @@ void EventExposureSubscriptionsCollectionApiImpl::queryeesubscriptions(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -32,14 +32,11 @@ ...@@ -32,14 +32,11 @@
#include "EeSubscription.h" #include "EeSubscription.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class EventExposureSubscriptionsCollectionApiImpl : public org::openapitools::server::api::EventExposureSubscriptionsCollectionApi { class EventExposureSubscriptionsCollectionApiImpl : public oai::udr::api::EventExposureSubscriptionsCollectionApi {
public: public:
EventExposureSubscriptionsCollectionApiImpl(std::shared_ptr<Pistache::Rest::Router>); EventExposureSubscriptionsCollectionApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~EventExposureSubscriptionsCollectionApiImpl() {} ~EventExposureSubscriptionsCollectionApiImpl() {}
...@@ -50,9 +47,9 @@ public: ...@@ -50,9 +47,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "ExposureDataSubscriptionsCollectionApiImpl.h" #include "ExposureDataSubscriptionsCollectionApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
ExposureDataSubscriptionsCollectionApiImpl:: ExposureDataSubscriptionsCollectionApiImpl::
ExposureDataSubscriptionsCollectionApiImpl( ExposureDataSubscriptionsCollectionApiImpl(
...@@ -32,7 +29,4 @@ void ExposureDataSubscriptionsCollectionApiImpl:: ...@@ -32,7 +29,4 @@ void ExposureDataSubscriptionsCollectionApiImpl::
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -32,14 +32,11 @@ ...@@ -32,14 +32,11 @@
#include "ExposureDataSubscription.h" #include "ExposureDataSubscription.h"
#include "ProblemDetails.h" #include "ProblemDetails.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class ExposureDataSubscriptionsCollectionApiImpl : public org::openapitools::server::api::ExposureDataSubscriptionsCollectionApi { class ExposureDataSubscriptionsCollectionApiImpl : public oai::udr::api::ExposureDataSubscriptionsCollectionApi {
public: public:
ExposureDataSubscriptionsCollectionApiImpl(std::shared_ptr<Pistache::Rest::Router>); ExposureDataSubscriptionsCollectionApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~ExposureDataSubscriptionsCollectionApiImpl() {} ~ExposureDataSubscriptionsCollectionApiImpl() {}
...@@ -49,9 +46,9 @@ public: ...@@ -49,9 +46,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "GroupIdentifiersApiImpl.h" #include "GroupIdentifiersApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
GroupIdentifiersApiImpl::GroupIdentifiersApiImpl( GroupIdentifiersApiImpl::GroupIdentifiersApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -33,7 +30,4 @@ void GroupIdentifiersApiImpl::get_group_identifiers( ...@@ -33,7 +30,4 @@ void GroupIdentifiersApiImpl::get_group_identifiers(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -32,14 +32,11 @@ ...@@ -32,14 +32,11 @@
#include "GroupIdentifiers.h" #include "GroupIdentifiers.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class GroupIdentifiersApiImpl : public org::openapitools::server::api::GroupIdentifiersApi { class GroupIdentifiersApiImpl : public oai::udr::api::GroupIdentifiersApi {
public: public:
GroupIdentifiersApiImpl(std::shared_ptr<Pistache::Rest::Router>); GroupIdentifiersApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~GroupIdentifiersApiImpl() {} ~GroupIdentifiersApiImpl() {}
...@@ -49,9 +46,9 @@ public: ...@@ -49,9 +46,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "IPSMGWRegistrationDocumentApiImpl.h" #include "IPSMGWRegistrationDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
IPSMGWRegistrationDocumentApiImpl::IPSMGWRegistrationDocumentApiImpl( IPSMGWRegistrationDocumentApiImpl::IPSMGWRegistrationDocumentApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -46,7 +43,4 @@ void IPSMGWRegistrationDocumentApiImpl::query_ip_sm_gw_context( ...@@ -46,7 +43,4 @@ void IPSMGWRegistrationDocumentApiImpl::query_ip_sm_gw_context(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -35,14 +35,11 @@ ...@@ -35,14 +35,11 @@
#include <string> #include <string>
#include <vector> #include <vector>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class IPSMGWRegistrationDocumentApiImpl : public org::openapitools::server::api::IPSMGWRegistrationDocumentApi { class IPSMGWRegistrationDocumentApiImpl : public oai::udr::api::IPSMGWRegistrationDocumentApi {
public: public:
IPSMGWRegistrationDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); IPSMGWRegistrationDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~IPSMGWRegistrationDocumentApiImpl() {} ~IPSMGWRegistrationDocumentApiImpl() {}
...@@ -55,9 +52,9 @@ public: ...@@ -55,9 +52,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "IPTVConfigurationDataStoreApiImpl.h" #include "IPTVConfigurationDataStoreApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
IPTVConfigurationDataStoreApiImpl::IPTVConfigurationDataStoreApiImpl( IPTVConfigurationDataStoreApiImpl::IPTVConfigurationDataStoreApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -34,7 +31,4 @@ void IPTVConfigurationDataStoreApiImpl::read_iptv_congifuration_data( ...@@ -34,7 +31,4 @@ void IPTVConfigurationDataStoreApiImpl::read_iptv_congifuration_data(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -34,14 +34,11 @@ ...@@ -34,14 +34,11 @@
#include "Snssai.h" #include "Snssai.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class IPTVConfigurationDataStoreApiImpl : public org::openapitools::server::api::IPTVConfigurationDataStoreApi { class IPTVConfigurationDataStoreApiImpl : public oai::udr::api::IPTVConfigurationDataStoreApi {
public: public:
IPTVConfigurationDataStoreApiImpl(std::shared_ptr<Pistache::Rest::Router>); IPTVConfigurationDataStoreApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~IPTVConfigurationDataStoreApiImpl() {} ~IPTVConfigurationDataStoreApiImpl() {}
...@@ -51,9 +48,9 @@ public: ...@@ -51,9 +48,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "IndividualApplicationDataSubscriptionDocumentApiImpl.h" #include "IndividualApplicationDataSubscriptionDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
IndividualApplicationDataSubscriptionDocumentApiImpl:: IndividualApplicationDataSubscriptionDocumentApiImpl::
IndividualApplicationDataSubscriptionDocumentApiImpl( IndividualApplicationDataSubscriptionDocumentApiImpl(
...@@ -43,7 +40,4 @@ void IndividualApplicationDataSubscriptionDocumentApiImpl:: ...@@ -43,7 +40,4 @@ void IndividualApplicationDataSubscriptionDocumentApiImpl::
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -33,14 +33,11 @@ ...@@ -33,14 +33,11 @@
#include "ProblemDetails.h" #include "ProblemDetails.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class IndividualApplicationDataSubscriptionDocumentApiImpl : public org::openapitools::server::api::IndividualApplicationDataSubscriptionDocumentApi { class IndividualApplicationDataSubscriptionDocumentApiImpl : public oai::udr::api::IndividualApplicationDataSubscriptionDocumentApi {
public: public:
IndividualApplicationDataSubscriptionDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); IndividualApplicationDataSubscriptionDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~IndividualApplicationDataSubscriptionDocumentApiImpl() {} ~IndividualApplicationDataSubscriptionDocumentApiImpl() {}
...@@ -52,9 +49,9 @@ public: ...@@ -52,9 +49,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "IndividualAppliedBDTPolicyDataDocumentApiImpl.h" #include "IndividualAppliedBDTPolicyDataDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
IndividualAppliedBDTPolicyDataDocumentApiImpl:: IndividualAppliedBDTPolicyDataDocumentApiImpl::
IndividualAppliedBDTPolicyDataDocumentApiImpl( IndividualAppliedBDTPolicyDataDocumentApiImpl(
...@@ -39,7 +36,4 @@ void IndividualAppliedBDTPolicyDataDocumentApiImpl:: ...@@ -39,7 +36,4 @@ void IndividualAppliedBDTPolicyDataDocumentApiImpl::
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -34,14 +34,11 @@ ...@@ -34,14 +34,11 @@
#include "ProblemDetails.h" #include "ProblemDetails.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class IndividualAppliedBDTPolicyDataDocumentApiImpl : public org::openapitools::server::api::IndividualAppliedBDTPolicyDataDocumentApi { class IndividualAppliedBDTPolicyDataDocumentApiImpl : public oai::udr::api::IndividualAppliedBDTPolicyDataDocumentApi {
public: public:
IndividualAppliedBDTPolicyDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); IndividualAppliedBDTPolicyDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~IndividualAppliedBDTPolicyDataDocumentApiImpl() {} ~IndividualAppliedBDTPolicyDataDocumentApiImpl() {}
...@@ -52,9 +49,9 @@ public: ...@@ -52,9 +49,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "IndividualBDTPolicyDataDocumentApiImpl.h" #include "IndividualBDTPolicyDataDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
IndividualBDTPolicyDataDocumentApiImpl::IndividualBDTPolicyDataDocumentApiImpl( IndividualBDTPolicyDataDocumentApiImpl::IndividualBDTPolicyDataDocumentApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -31,7 +28,4 @@ void IndividualBDTPolicyDataDocumentApiImpl:: ...@@ -31,7 +28,4 @@ void IndividualBDTPolicyDataDocumentApiImpl::
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -33,14 +33,11 @@ ...@@ -33,14 +33,11 @@
#include "ProblemDetails.h" #include "ProblemDetails.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class IndividualBDTPolicyDataDocumentApiImpl : public org::openapitools::server::api::IndividualBDTPolicyDataDocumentApi { class IndividualBDTPolicyDataDocumentApiImpl : public oai::udr::api::IndividualBDTPolicyDataDocumentApi {
public: public:
IndividualBDTPolicyDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); IndividualBDTPolicyDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~IndividualBDTPolicyDataDocumentApiImpl() {} ~IndividualBDTPolicyDataDocumentApiImpl() {}
...@@ -50,9 +47,9 @@ public: ...@@ -50,9 +47,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "IndividualBdtDataDocumentApiImpl.h" #include "IndividualBdtDataDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
IndividualBdtDataDocumentApiImpl::IndividualBdtDataDocumentApiImpl( IndividualBdtDataDocumentApiImpl::IndividualBdtDataDocumentApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -46,7 +43,4 @@ void IndividualBdtDataDocumentApiImpl::update_individual_bdt_data( ...@@ -46,7 +43,4 @@ void IndividualBdtDataDocumentApiImpl::update_individual_bdt_data(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -34,14 +34,11 @@ ...@@ -34,14 +34,11 @@
#include "ProblemDetails.h" #include "ProblemDetails.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class IndividualBdtDataDocumentApiImpl : public org::openapitools::server::api::IndividualBdtDataDocumentApi { class IndividualBdtDataDocumentApiImpl : public oai::udr::api::IndividualBdtDataDocumentApi {
public: public:
IndividualBdtDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); IndividualBdtDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~IndividualBdtDataDocumentApiImpl() {} ~IndividualBdtDataDocumentApiImpl() {}
...@@ -54,9 +51,9 @@ public: ...@@ -54,9 +51,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "IndividualExposureDataSubscriptionDocumentApiImpl.h" #include "IndividualExposureDataSubscriptionDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
IndividualExposureDataSubscriptionDocumentApiImpl:: IndividualExposureDataSubscriptionDocumentApiImpl::
IndividualExposureDataSubscriptionDocumentApiImpl( IndividualExposureDataSubscriptionDocumentApiImpl(
...@@ -38,7 +35,4 @@ void IndividualExposureDataSubscriptionDocumentApiImpl:: ...@@ -38,7 +35,4 @@ void IndividualExposureDataSubscriptionDocumentApiImpl::
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -33,14 +33,11 @@ ...@@ -33,14 +33,11 @@
#include "ProblemDetails.h" #include "ProblemDetails.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class IndividualExposureDataSubscriptionDocumentApiImpl : public org::openapitools::server::api::IndividualExposureDataSubscriptionDocumentApi { class IndividualExposureDataSubscriptionDocumentApiImpl : public oai::udr::api::IndividualExposureDataSubscriptionDocumentApi {
public: public:
IndividualExposureDataSubscriptionDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); IndividualExposureDataSubscriptionDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~IndividualExposureDataSubscriptionDocumentApiImpl() {} ~IndividualExposureDataSubscriptionDocumentApiImpl() {}
...@@ -51,9 +48,9 @@ public: ...@@ -51,9 +48,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "IndividualIPTVConfigurationDataApiImpl.h" #include "IndividualIPTVConfigurationDataApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
IndividualIPTVConfigurationDataApiImpl::IndividualIPTVConfigurationDataApiImpl( IndividualIPTVConfigurationDataApiImpl::IndividualIPTVConfigurationDataApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -32,7 +29,4 @@ void IndividualIPTVConfigurationDataApiImpl:: ...@@ -32,7 +29,4 @@ void IndividualIPTVConfigurationDataApiImpl::
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -34,14 +34,11 @@ ...@@ -34,14 +34,11 @@
#include "ProblemDetails.h" #include "ProblemDetails.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class IndividualIPTVConfigurationDataApiImpl : public org::openapitools::server::api::IndividualIPTVConfigurationDataApi { class IndividualIPTVConfigurationDataApiImpl : public oai::udr::api::IndividualIPTVConfigurationDataApi {
public: public:
IndividualIPTVConfigurationDataApiImpl(std::shared_ptr<Pistache::Rest::Router>); IndividualIPTVConfigurationDataApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~IndividualIPTVConfigurationDataApiImpl() {} ~IndividualIPTVConfigurationDataApiImpl() {}
...@@ -51,9 +48,9 @@ public: ...@@ -51,9 +48,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "IndividualIPTVConfigurationDataDocumentApiImpl.h" #include "IndividualIPTVConfigurationDataDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
IndividualIPTVConfigurationDataDocumentApiImpl:: IndividualIPTVConfigurationDataDocumentApiImpl::
IndividualIPTVConfigurationDataDocumentApiImpl( IndividualIPTVConfigurationDataDocumentApiImpl(
...@@ -39,7 +36,4 @@ void IndividualIPTVConfigurationDataDocumentApiImpl:: ...@@ -39,7 +36,4 @@ void IndividualIPTVConfigurationDataDocumentApiImpl::
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -33,14 +33,11 @@ ...@@ -33,14 +33,11 @@
#include "ProblemDetails.h" #include "ProblemDetails.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class IndividualIPTVConfigurationDataDocumentApiImpl : public org::openapitools::server::api::IndividualIPTVConfigurationDataDocumentApi { class IndividualIPTVConfigurationDataDocumentApiImpl : public oai::udr::api::IndividualIPTVConfigurationDataDocumentApi {
public: public:
IndividualIPTVConfigurationDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); IndividualIPTVConfigurationDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~IndividualIPTVConfigurationDataDocumentApiImpl() {} ~IndividualIPTVConfigurationDataDocumentApiImpl() {}
...@@ -51,9 +48,9 @@ public: ...@@ -51,9 +48,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "IndividualInfluenceDataDocumentApiImpl.h" #include "IndividualInfluenceDataDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
IndividualInfluenceDataDocumentApiImpl::IndividualInfluenceDataDocumentApiImpl( IndividualInfluenceDataDocumentApiImpl::IndividualInfluenceDataDocumentApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -42,7 +39,4 @@ void IndividualInfluenceDataDocumentApiImpl::update_individual_influence_data( ...@@ -42,7 +39,4 @@ void IndividualInfluenceDataDocumentApiImpl::update_individual_influence_data(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -34,14 +34,11 @@ ...@@ -34,14 +34,11 @@
#include "TrafficInfluDataPatch.h" #include "TrafficInfluDataPatch.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class IndividualInfluenceDataDocumentApiImpl : public org::openapitools::server::api::IndividualInfluenceDataDocumentApi { class IndividualInfluenceDataDocumentApiImpl : public oai::udr::api::IndividualInfluenceDataDocumentApi {
public: public:
IndividualInfluenceDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); IndividualInfluenceDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~IndividualInfluenceDataDocumentApiImpl() {} ~IndividualInfluenceDataDocumentApiImpl() {}
...@@ -53,9 +50,9 @@ public: ...@@ -53,9 +50,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "IndividualInfluenceDataSubscriptionDocumentApiImpl.h" #include "IndividualInfluenceDataSubscriptionDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
IndividualInfluenceDataSubscriptionDocumentApiImpl:: IndividualInfluenceDataSubscriptionDocumentApiImpl::
IndividualInfluenceDataSubscriptionDocumentApiImpl( IndividualInfluenceDataSubscriptionDocumentApiImpl(
...@@ -45,7 +42,4 @@ void IndividualInfluenceDataSubscriptionDocumentApiImpl:: ...@@ -45,7 +42,4 @@ void IndividualInfluenceDataSubscriptionDocumentApiImpl::
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -33,14 +33,11 @@ ...@@ -33,14 +33,11 @@
#include "TrafficInfluSub.h" #include "TrafficInfluSub.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class IndividualInfluenceDataSubscriptionDocumentApiImpl : public org::openapitools::server::api::IndividualInfluenceDataSubscriptionDocumentApi { class IndividualInfluenceDataSubscriptionDocumentApiImpl : public oai::udr::api::IndividualInfluenceDataSubscriptionDocumentApi {
public: public:
IndividualInfluenceDataSubscriptionDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); IndividualInfluenceDataSubscriptionDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~IndividualInfluenceDataSubscriptionDocumentApiImpl() {} ~IndividualInfluenceDataSubscriptionDocumentApiImpl() {}
...@@ -52,9 +49,9 @@ public: ...@@ -52,9 +49,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "IndividualPFDDataDocumentApiImpl.h" #include "IndividualPFDDataDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
IndividualPFDDataDocumentApiImpl::IndividualPFDDataDocumentApiImpl( IndividualPFDDataDocumentApiImpl::IndividualPFDDataDocumentApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -38,7 +35,4 @@ void IndividualPFDDataDocumentApiImpl::read_individual_pfd_data( ...@@ -38,7 +35,4 @@ void IndividualPFDDataDocumentApiImpl::read_individual_pfd_data(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -33,14 +33,11 @@ ...@@ -33,14 +33,11 @@
#include "ProblemDetails.h" #include "ProblemDetails.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class IndividualPFDDataDocumentApiImpl : public org::openapitools::server::api::IndividualPFDDataDocumentApi { class IndividualPFDDataDocumentApiImpl : public oai::udr::api::IndividualPFDDataDocumentApi {
public: public:
IndividualPFDDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); IndividualPFDDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~IndividualPFDDataDocumentApiImpl() {} ~IndividualPFDDataDocumentApiImpl() {}
...@@ -52,9 +49,9 @@ public: ...@@ -52,9 +49,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "IndividualPolicyDataSubscriptionDocumentApiImpl.h" #include "IndividualPolicyDataSubscriptionDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
IndividualPolicyDataSubscriptionDocumentApiImpl:: IndividualPolicyDataSubscriptionDocumentApiImpl::
IndividualPolicyDataSubscriptionDocumentApiImpl( IndividualPolicyDataSubscriptionDocumentApiImpl(
...@@ -38,7 +35,4 @@ void IndividualPolicyDataSubscriptionDocumentApiImpl:: ...@@ -38,7 +35,4 @@ void IndividualPolicyDataSubscriptionDocumentApiImpl::
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -33,14 +33,11 @@ ...@@ -33,14 +33,11 @@
#include "ProblemDetails.h" #include "ProblemDetails.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class IndividualPolicyDataSubscriptionDocumentApiImpl : public org::openapitools::server::api::IndividualPolicyDataSubscriptionDocumentApi { class IndividualPolicyDataSubscriptionDocumentApiImpl : public oai::udr::api::IndividualPolicyDataSubscriptionDocumentApi {
public: public:
IndividualPolicyDataSubscriptionDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); IndividualPolicyDataSubscriptionDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~IndividualPolicyDataSubscriptionDocumentApiImpl() {} ~IndividualPolicyDataSubscriptionDocumentApiImpl() {}
...@@ -51,9 +48,9 @@ public: ...@@ -51,9 +48,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "InfluenceDataStoreApiImpl.h" #include "InfluenceDataStoreApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
InfluenceDataStoreApiImpl::InfluenceDataStoreApiImpl( InfluenceDataStoreApiImpl::InfluenceDataStoreApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -35,7 +32,4 @@ void InfluenceDataStoreApiImpl::read_influence_data( ...@@ -35,7 +32,4 @@ void InfluenceDataStoreApiImpl::read_influence_data(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -34,14 +34,11 @@ ...@@ -34,14 +34,11 @@
#include "TrafficInfluData.h" #include "TrafficInfluData.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class InfluenceDataStoreApiImpl : public org::openapitools::server::api::InfluenceDataStoreApi { class InfluenceDataStoreApiImpl : public oai::udr::api::InfluenceDataStoreApi {
public: public:
InfluenceDataStoreApiImpl(std::shared_ptr<Pistache::Rest::Router>); InfluenceDataStoreApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~InfluenceDataStoreApiImpl() {} ~InfluenceDataStoreApiImpl() {}
...@@ -51,9 +48,9 @@ public: ...@@ -51,9 +48,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "InfluenceDataSubscriptionsCollectionApiImpl.h" #include "InfluenceDataSubscriptionsCollectionApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
InfluenceDataSubscriptionsCollectionApiImpl:: InfluenceDataSubscriptionsCollectionApiImpl::
InfluenceDataSubscriptionsCollectionApiImpl( InfluenceDataSubscriptionsCollectionApiImpl(
...@@ -41,7 +38,4 @@ void InfluenceDataSubscriptionsCollectionApiImpl:: ...@@ -41,7 +38,4 @@ void InfluenceDataSubscriptionsCollectionApiImpl::
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -34,14 +34,11 @@ ...@@ -34,14 +34,11 @@
#include "TrafficInfluSub.h" #include "TrafficInfluSub.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class InfluenceDataSubscriptionsCollectionApiImpl : public org::openapitools::server::api::InfluenceDataSubscriptionsCollectionApi { class InfluenceDataSubscriptionsCollectionApiImpl : public oai::udr::api::InfluenceDataSubscriptionsCollectionApi {
public: public:
InfluenceDataSubscriptionsCollectionApiImpl(std::shared_ptr<Pistache::Rest::Router>); InfluenceDataSubscriptionsCollectionApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~InfluenceDataSubscriptionsCollectionApiImpl() {} ~InfluenceDataSubscriptionsCollectionApiImpl() {}
...@@ -52,9 +49,9 @@ public: ...@@ -52,9 +49,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "LCSBroadcastAssistanceSubscriptionDataApiImpl.h" #include "LCSBroadcastAssistanceSubscriptionDataApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
LCSBroadcastAssistanceSubscriptionDataApiImpl:: LCSBroadcastAssistanceSubscriptionDataApiImpl::
LCSBroadcastAssistanceSubscriptionDataApiImpl( LCSBroadcastAssistanceSubscriptionDataApiImpl(
...@@ -34,7 +31,4 @@ void LCSBroadcastAssistanceSubscriptionDataApiImpl::query_lcs_bca_data( ...@@ -34,7 +31,4 @@ void LCSBroadcastAssistanceSubscriptionDataApiImpl::query_lcs_bca_data(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -33,14 +33,11 @@ ...@@ -33,14 +33,11 @@
#include "ProblemDetails.h" #include "ProblemDetails.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class LCSBroadcastAssistanceSubscriptionDataApiImpl : public org::openapitools::server::api::LCSBroadcastAssistanceSubscriptionDataApi { class LCSBroadcastAssistanceSubscriptionDataApiImpl : public oai::udr::api::LCSBroadcastAssistanceSubscriptionDataApi {
public: public:
LCSBroadcastAssistanceSubscriptionDataApiImpl(std::shared_ptr<Pistache::Rest::Router>); LCSBroadcastAssistanceSubscriptionDataApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~LCSBroadcastAssistanceSubscriptionDataApiImpl() {} ~LCSBroadcastAssistanceSubscriptionDataApiImpl() {}
...@@ -50,9 +47,9 @@ public: ...@@ -50,9 +47,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "LCSMobileOriginatedSubscriptionDataApiImpl.h" #include "LCSMobileOriginatedSubscriptionDataApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
LCSMobileOriginatedSubscriptionDataApiImpl:: LCSMobileOriginatedSubscriptionDataApiImpl::
LCSMobileOriginatedSubscriptionDataApiImpl( LCSMobileOriginatedSubscriptionDataApiImpl(
...@@ -35,7 +32,4 @@ void LCSMobileOriginatedSubscriptionDataApiImpl::query_lcs_mo_data( ...@@ -35,7 +32,4 @@ void LCSMobileOriginatedSubscriptionDataApiImpl::query_lcs_mo_data(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -32,14 +32,11 @@ ...@@ -32,14 +32,11 @@
#include "LcsMoData.h" #include "LcsMoData.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class LCSMobileOriginatedSubscriptionDataApiImpl : public org::openapitools::server::api::LCSMobileOriginatedSubscriptionDataApi { class LCSMobileOriginatedSubscriptionDataApiImpl : public oai::udr::api::LCSMobileOriginatedSubscriptionDataApi {
public: public:
LCSMobileOriginatedSubscriptionDataApiImpl(std::shared_ptr<Pistache::Rest::Router>); LCSMobileOriginatedSubscriptionDataApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~LCSMobileOriginatedSubscriptionDataApiImpl() {} ~LCSMobileOriginatedSubscriptionDataApiImpl() {}
...@@ -49,9 +46,9 @@ public: ...@@ -49,9 +46,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "LCSPrivacySubscriptionDataApiImpl.h" #include "LCSPrivacySubscriptionDataApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
LCSPrivacySubscriptionDataApiImpl::LCSPrivacySubscriptionDataApiImpl( LCSPrivacySubscriptionDataApiImpl::LCSPrivacySubscriptionDataApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -34,7 +31,4 @@ void LCSPrivacySubscriptionDataApiImpl::query_lcs_privacy_data( ...@@ -34,7 +31,4 @@ void LCSPrivacySubscriptionDataApiImpl::query_lcs_privacy_data(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -32,14 +32,11 @@ ...@@ -32,14 +32,11 @@
#include "LcsPrivacyData.h" #include "LcsPrivacyData.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class LCSPrivacySubscriptionDataApiImpl : public org::openapitools::server::api::LCSPrivacySubscriptionDataApi { class LCSPrivacySubscriptionDataApiImpl : public oai::udr::api::LCSPrivacySubscriptionDataApi {
public: public:
LCSPrivacySubscriptionDataApiImpl(std::shared_ptr<Pistache::Rest::Router>); LCSPrivacySubscriptionDataApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~LCSPrivacySubscriptionDataApiImpl() {} ~LCSPrivacySubscriptionDataApiImpl() {}
...@@ -49,9 +46,9 @@ public: ...@@ -49,9 +46,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "MessageWaitingDataDocumentApiImpl.h" #include "MessageWaitingDataDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
MessageWaitingDataDocumentApiImpl::MessageWaitingDataDocumentApiImpl( MessageWaitingDataDocumentApiImpl::MessageWaitingDataDocumentApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -46,7 +43,4 @@ void MessageWaitingDataDocumentApiImpl::query_message_waiting_data( ...@@ -46,7 +43,4 @@ void MessageWaitingDataDocumentApiImpl::query_message_waiting_data(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -35,14 +35,11 @@ ...@@ -35,14 +35,11 @@
#include <string> #include <string>
#include <vector> #include <vector>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class MessageWaitingDataDocumentApiImpl : public org::openapitools::server::api::MessageWaitingDataDocumentApi { class MessageWaitingDataDocumentApiImpl : public oai::udr::api::MessageWaitingDataDocumentApi {
public: public:
MessageWaitingDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); MessageWaitingDataDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~MessageWaitingDataDocumentApiImpl() {} ~MessageWaitingDataDocumentApiImpl() {}
...@@ -55,9 +52,9 @@ public: ...@@ -55,9 +52,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "Modify5GVnGroupApiImpl.h" #include "Modify5GVnGroupApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
Modify5GVnGroupApiImpl::Modify5GVnGroupApiImpl( Modify5GVnGroupApiImpl::Modify5GVnGroupApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -31,7 +28,4 @@ void Modify5GVnGroupApiImpl::modify5_g_vn_group( ...@@ -31,7 +28,4 @@ void Modify5GVnGroupApiImpl::modify5_g_vn_group(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -35,14 +35,11 @@ ...@@ -35,14 +35,11 @@
#include <string> #include <string>
#include <vector> #include <vector>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class Modify5GVnGroupApiImpl : public org::openapitools::server::api::Modify5GVnGroupApi { class Modify5GVnGroupApiImpl : public oai::udr::api::Modify5GVnGroupApi {
public: public:
Modify5GVnGroupApiImpl(std::shared_ptr<Pistache::Rest::Router>); Modify5GVnGroupApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~Modify5GVnGroupApiImpl() {} ~Modify5GVnGroupApiImpl() {}
...@@ -52,9 +49,9 @@ public: ...@@ -52,9 +49,9 @@ public:
}; };
} }
}
}
}
......
...@@ -13,12 +13,9 @@ ...@@ -13,12 +13,9 @@
#include "NSSAIACKDocumentApiImpl.h" #include "NSSAIACKDocumentApiImpl.h"
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
NSSAIACKDocumentApiImpl::NSSAIACKDocumentApiImpl( NSSAIACKDocumentApiImpl::NSSAIACKDocumentApiImpl(
std::shared_ptr<Pistache::Rest::Router> rtr) std::shared_ptr<Pistache::Rest::Router> rtr)
...@@ -31,7 +28,4 @@ void NSSAIACKDocumentApiImpl::query_nssai_ack( ...@@ -31,7 +28,4 @@ void NSSAIACKDocumentApiImpl::query_nssai_ack(
response.send(Pistache::Http::Code::Ok, "Do some magic\n"); response.send(Pistache::Http::Code::Ok, "Do some magic\n");
} }
} // namespace api } // namespace oai::udr::model
} // namespace server
} // namespace openapitools
} // namespace org
...@@ -32,14 +32,11 @@ ...@@ -32,14 +32,11 @@
#include "NssaiAckData.h" #include "NssaiAckData.h"
#include <string> #include <string>
namespace org { namespace oai::udr::api {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model; using namespace oai::udr::model;
class NSSAIACKDocumentApiImpl : public org::openapitools::server::api::NSSAIACKDocumentApi { class NSSAIACKDocumentApiImpl : public oai::udr::api::NSSAIACKDocumentApi {
public: public:
NSSAIACKDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>); NSSAIACKDocumentApiImpl(std::shared_ptr<Pistache::Rest::Router>);
~NSSAIACKDocumentApiImpl() {} ~NSSAIACKDocumentApiImpl() {}
...@@ -49,9 +46,9 @@ public: ...@@ -49,9 +46,9 @@ public:
}; };
} }
}
}
}
......
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment