Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-UDR
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-UDR
Commits
c087d165
Commit
c087d165
authored
Jan 07, 2021
by
yangjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update AuthenticationStatus
parent
08efef26
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
impl/AccessAndMobilitySubscriptionDataDocumentApiImpl.cpp
impl/AccessAndMobilitySubscriptionDataDocumentApiImpl.cpp
+1
-1
impl/AuthenticationStatusDocumentApiImpl.cpp
impl/AuthenticationStatusDocumentApiImpl.cpp
+4
-2
No files found.
impl/AccessAndMobilitySubscriptionDataDocumentApiImpl.cpp
View file @
c087d165
...
@@ -24,7 +24,7 @@ AccessAndMobilitySubscriptionDataDocumentApiImpl::AccessAndMobilitySubscriptionD
...
@@ -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
)
{
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
"
);
}
}
...
...
impl/AuthenticationStatusDocumentApiImpl.cpp
View file @
c087d165
...
@@ -24,11 +24,13 @@ AuthenticationStatusDocumentApiImpl::AuthenticationStatusDocumentApiImpl(std::sh
...
@@ -24,11 +24,13 @@ AuthenticationStatusDocumentApiImpl::AuthenticationStatusDocumentApiImpl(std::sh
{
}
{
}
void
AuthenticationStatusDocumentApiImpl
::
create_authentication_status
(
const
std
::
string
&
ueId
,
const
AuthEvent
&
authEvent
,
Pistache
::
Http
::
ResponseWriter
&
response
)
{
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
)
{
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
)
{
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
"
);
response
.
send
(
Pistache
::
Http
::
Code
::
Ok
,
"query_authentication_status
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment