/** * 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. */ /* * AuthenticationSubscriptionDocumentApi.h * * */ #ifndef AuthenticationSubscriptionDocumentApi_H_ #define AuthenticationSubscriptionDocumentApi_H_ #include <pistache/http.h> #include <pistache/http_headers.h> #include <pistache/optional.h> #include <pistache/router.h> #include <string> #include <vector> #include "PatchItem.h" #include "PatchResult.h" #include "ProblemDetails.h" namespace oai::udr::api { using namespace oai::udr::model; class AuthenticationSubscriptionDocumentApi { public: AuthenticationSubscriptionDocumentApi( std::shared_ptr<Pistache::Rest::Router>); virtual ~AuthenticationSubscriptionDocumentApi() {} void init(); const std::string base = "/nudr-dr/v2"; private: void setupRoutes(); void modify_authentication_subscription_handler( const Pistache::Rest::Request &request, Pistache::Http::ResponseWriter response); void read_authentication_subscription_handler( const Pistache::Rest::Request &request, Pistache::Http::ResponseWriter response); void authentication_subscription_document_api_default_handler( const Pistache::Rest::Request &request, Pistache::Http::ResponseWriter response); std::shared_ptr<Pistache::Rest::Router> router; /// <summary> /// modify the authentication subscription data of a UE /// </summary> /// <remarks> /// /// </remarks> /// <param name="ueId">UE id</param> /// <param name="patchItem"></param> /// <param name="supportedFeatures">Features required to be supported by the /// target NF (optional, default to "")</param> virtual void modify_authentication_subscription( const std::string &ueId, const std::vector<PatchItem> &patchItem, const Pistache::Optional<std::string> &supportedFeatures, Pistache::Http::ResponseWriter &response) = 0; virtual void read_authentication_subscription( const std::string &ueId, const Pistache::Optional<std::string> &supportedFeatures, Pistache::Http::ResponseWriter &response) = 0; }; } // namespace oai::udr::api #endif /* AuthenticationSubscriptionDocumentApi_H_ */