fe83e5051ca7bd512b4ca867cd440a5257a0b8c1
[o-du/l2.git] / src / o1 / ves / CellStateChangeStdDef.hpp
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2020-2022] [HCL Technologies Ltd.]                          #
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
19 #ifndef __CELL_STATE_CHANGE_STD_DEF_HPP__
20 #define __CELL_STATE_CHANGE_STD_DEF_HPP__
21
22
23 #include <iostream>
24
25 #include "VesEvent.hpp"
26 #include "AlarmMessages.h"
27 #include "Alarm.hpp"
28 #include "AlarmManager.hpp"
29 #include "Message.hpp"
30 #include "Notification.hpp"
31
32 using namespace std;
33
34 #define FAULT_SCHEMA "https://forge.3gpp.org/rep/sa5/MnS/blob/SA88-Rel16/OpenAPI/faultMnS.yaml#components/schemas/NotifyNewAlarm"
35 #define HREF "1"
36 #define URI "1"
37 #define NOTIFICATION_ID 1.0
38 #define NOTIFICATION_TYPE "notifyNewAlarm"
39 #define PROBABLE_CAUSE "real-issue"
40 #define TRND_INDICATION "MORE_SEVERE"
41 #define OBSRVED_MEASUREMENT "new"
42 #define OBSERVED_VALUE 123.2
43 #define NEW_ATT "new"
44 #define ADD_INFO "new"
45 #define ALARM_ID "1"
46 #define ALRAM_TYPE "COMMUNICATIONS_ALARM"
47 #define STND_DEFINED_FEILD_VERSION "1.0"
48 #define PERCEIVED_SEVERITY "INDETERMINATE"
49 #define PROPOSED_REPAIR_ACTION "Call the police!"
50 #define ADDITIONAL_TEXT "O-RAN Software Community"
51
52
53 class CellStateChangeStdDef : public Notification
54 {
55
56     public:
57     CellStateChangeStdDef();
58     ~CellStateChangeStdDef();
59     
60     std::string getISOEventTime();
61    
62     protected:
63     bool prepareEventFields(const Message* msg = NULL);
64
65
66 };
67
68
69 #endif
70
71 /**********************************************************************
72   End of file
73  **********************************************************************/