Commit c087d165 authored by yangjian's avatar yangjian

update AuthenticationStatus

parent 08efef26
......@@ -24,7 +24,7 @@ AccessAndMobilitySubscriptionDataDocumentApiImpl::AccessAndMobilitySubscriptionD
{ }
void AccessAndMobilitySubscriptionDataDocumentApiImpl::query_am_data(const std::string &ueId, const std::string &servingPlmnId, const Pistache::Optional<std::vector<std::string>> &fields, const Pistache::Optional<std::string> &supportedFeatures, const Pistache::Optional<Pistache::Http::Header::Raw> &ifNoneMatch, const Pistache::Optional<Pistache::Http::Header::Raw> &ifModifiedSince, Pistache::Http::ResponseWriter &response) {
response.send(Pistache::Http::Code::Ok, "Do some magic\n");
response.send(Pistache::Http::Code::Ok, "query_am_data\n");
}
......
......@@ -24,11 +24,13 @@ AuthenticationStatusDocumentApiImpl::AuthenticationStatusDocumentApiImpl(std::sh
{ }
void AuthenticationStatusDocumentApiImpl::create_authentication_status(const std::string &ueId, const AuthEvent &authEvent, Pistache::Http::ResponseWriter &response) {
response.send(Pistache::Http::Code::Ok, "create_authentication_status\n");
//response.send(Pistache::Http::Code::Ok, "create_authentication_status\n");
response.send(Pistache::Http::Code::No_Content, "");
}
void AuthenticationStatusDocumentApiImpl::delete_authentication_status(const std::string &ueId, Pistache::Http::ResponseWriter &response) {
response.send(Pistache::Http::Code::Ok, "delete_authentication_status\n");
//response.send(Pistache::Http::Code::Ok, "delete_authentication_status\n");
response.send(Pistache::Http::Code::No_Content, "");
}
void AuthenticationStatusDocumentApiImpl::query_authentication_status(const std::string &ueId, const Pistache::Optional<std::vector<std::string>> &fields, const Pistache::Optional<std::string> &supportedFeatures, Pistache::Http::ResponseWriter &response) {
response.send(Pistache::Http::Code::Ok, "query_authentication_status\n");
......
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