VES PM data for slicing use case. [Issue-Id: ODUHIGH-384]
[o-du/l2.git] / src / o1 / NetconfConfigFile.hpp
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2020-2021] [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 /* This class defines functions to read Netconf Config file */
19
20 #ifndef __NETCONF_CONFIG_FILE_HPP__
21 #define __NETCONF_CONFIG_FILE_HPP__
22
23 #include "ConfigFile.hpp"
24 #include <string>
25
26
27 using std::string;
28
29 class NetconfConfigFile : public ConfigFile {
30 public:  
31     //constructor & Destructor
32     NetconfConfigFile(string filepath);
33     ~NetconfConfigFile();
34
35     //member functions
36     bool loadConfigFile() override;
37
38
39     //Getters
40     string getNetconfMacAddr() const;
41     string getNetconfIpv4() const;
42     string getNetconfIpv6() const;
43     string getNetconfPort() const;
44     string getNetconfUsername() const;
45     string getNetconfPassword() const;
46     
47 private: 
48     //member variables
49     string mNetconfMacAddr;
50     string mNetconfIpv4;
51     string mNetconfIpv6;
52     string mNetconfPort;
53     string mNetconfUsername;
54     string mNetconfPassword;
55 };
56 #endif
57
58 /**********************************************************************
59   End of file
60  **********************************************************************/