RIC-641 Fixing client/server model definitions and adding client and server API
[ric-plt/xapp-frame-cpp.git] / src / model / SubscriptionParams_ClientEndpoint.h
1 /*
2 # ==================================================================================
3 # Copyright (c) 2020 HCL Technologies Limited.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 # ==================================================================================
17 */
18 #ifndef XAPP_MODEL_SubscriptionParams_ClientEndpoint_H
19 #define XAPP_MODEL_SubscriptionParams_ClientEndpoint_H
20 #include "ModelBase.h"
21 #include"nlohmann/json.hpp"
22
23 namespace xapp {
24         namespace model {
25
26                 struct SubscriptionParams_ClientEndpoint :public ModelBase {
27                         int HTTPPort;
28                         std::string Host;
29                         int RMRPort;
30                         nlohmann::json validator_schema = R"(
31                         {
32                         "$schema": "http://json-schema.org/draft-07/schema#",
33                         "title": "SubscriptionParams_ClientEndpoint",
34                         "description": "xApp service address and port",
35                         "properties": {
36                             "HTTPPort": {
37                                 "description": "xApp HTTP service address port",
38                                 "type": "integer",
39                                 "minimum": 0,
40                                 "maximum": 65535
41                             },
42                             "Host": {
43                                 "description": "xApp service address name like service-ricxapp-xappname-http.ricxapp",
44                                 "type": "string"
45                             },
46                             "RMRPort": {
47                                 "description": "xApp RMR service address port",
48                                 "type": "integer",
49                                 "minimum": 0,
50                                 "maximum": 65535
51                             }
52                         },
53                         "required": [
54                                      "HTTPPort",
55                                      "Host",
56                                      "RMRPort"
57                                      ],
58                         "type": "object"
59                         })"_json;
60
61                         virtual nlohmann::json get_validator_schema() const { return validator_schema; }
62
63                 };
64                 void from_json(const nlohmann::json& j, SubscriptionParams_ClientEndpoint& ref);
65                 void to_json(nlohmann::json& j, const SubscriptionParams_ClientEndpoint& ref);
66
67                 
68         } /*namespace model*/
69 } /*namespace xapp*/
70 #endif /*XAPP_MODEL_SubscriptionParams_ClientEndpoint_H*/
71