RIC-641 Fixing client/server model definitions and adding client and server API
[ric-plt/xapp-frame-cpp.git] / src / model / SubscriptionParams_E2SubscriptionDirectives.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_E2SubscriptionDirectives_H
19 #define XAPP_MODEL_SubscriptionParams_E2SubscriptionDirectives_H
20 #include"ModelBase.h"
21 #include"nlohmann/json.hpp"
22
23 namespace xapp {
24         namespace model {
25
26                 struct SubscriptionParams_E2SubscriptionDirectives : public ModelBase {
27
28                         int E2RetryCount=INT_MIN;
29                         int E2TimeoutTimerValue=INT_MIN;
30                         bool RMRRoutingNeeded;
31                         nlohmann::json validator_schema = R"(
32                         {
33                         "$schema": "http://json-schema.org/draft-07/schema#",
34                         "title": "SubscriptionParams_E2SubscriptionDirectives",
35                         "description": "Optional. If not set Submgr uses its default values",
36                         "properties": {
37                             "E2RetryCount": {
38                                 "description": "How many times E2 subscription request is retried",
39                                 "type": "integer",
40                                 "minimum": 0,
41                                 "maximum": 10
42                             },
43                             "E2TimeoutTimerValue": {
44                                 "description": "How long time response is waited from E2 node",
45                                 "type": "integer",
46                                 "minimum": 0,
47                                 "maximum": 10
48                             },
49                             "RMRRoutingNeeded": {
50                                 "description": "Subscription needs RMR route from E2Term to xApp",
51                                 "type": "boolean"
52                             }
53                         },
54                         "required": [
55                                      "E2TimeoutTimerValue",
56                                      "E2RetryCount",
57                                      "RMRRoutingNeeded"
58                                     ],
59                         "type": "object"
60                         })"_json;
61                         virtual nlohmann::json get_validator_schema() const { return validator_schema; }
62                 };
63                 
64                 void from_json(const nlohmann::json& j, SubscriptionParams_E2SubscriptionDirectives& ref);
65                 void to_json(nlohmann::json& j, const SubscriptionParams_E2SubscriptionDirectives& ref);
66
67                 
68         } /*namespace model*/
69 } /*namespace xapp*/
70 #endif /*XAPP_MODEL_SubscriptionParams_ClientEndpoint_H*/