Merge "VES Heartbeat and Software Management Feature"
[oam/tr069-adapter.git] / acs / common / src / main / java / org / commscope / tr069adapter / acs / common / dto / ConfigurationData.java
1 /*\r
2  * ============LICENSE_START========================================================================\r
3  * ONAP : tr-069-adapter\r
4  * =================================================================================================\r
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.\r
6  * =================================================================================================\r
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,\r
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You\r
9  * may obtain a copy of the License at\r
10  *\r
11  * http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\r
14  * either express or implied. See the License for the specific language governing permissions and\r
15  * limitations under the License.\r
16  * ===============LICENSE_END=======================================================================\r
17  */\r
18 \r
19 package org.commscope.tr069adapter.acs.common.dto;\r
20 \r
21 import java.io.Serializable;\r
22 import java.util.Map;\r
23 \r
24 /**\r
25  * Domain Object for Service Settings<br>\r
26  * \r
27  * @version 1.0\r
28  * @since September 27, 2019\r
29  * @author prashantk\r
30  */\r
31 \r
32 public class ConfigurationData implements Serializable {\r
33   /**\r
34    * \r
35    */\r
36   private static final long serialVersionUID = -6219229519491907038L;\r
37 \r
38   private String oui;\r
39   private String productClass;\r
40   private String softwareVersion;\r
41   private String hardwareVersion;\r
42 \r
43   private String localDn;// ="0005B95196D0"\r
44 \r
45   private Map<String, String> parameterMONameValueMap;\r
46 \r
47   public String getLocalDn() {\r
48     return localDn;\r
49   }\r
50 \r
51   public void setLocalDn(String localDn) {\r
52     this.localDn = localDn;\r
53   }\r
54 \r
55   public String getHardwareVersion() {\r
56     return hardwareVersion;\r
57   }\r
58 \r
59   public void setHardwareVersion(String hardwareVersion) {\r
60     this.hardwareVersion = hardwareVersion;\r
61   }\r
62 \r
63   public String getProductClass() {\r
64     return productClass;\r
65   }\r
66 \r
67   public void setProductClass(String productClass) {\r
68     this.productClass = productClass;\r
69   }\r
70 \r
71   public String getOUI() {\r
72     return oui;\r
73   }\r
74 \r
75   public void setOUI(String oUI) {\r
76     oui = oUI;\r
77   }\r
78 \r
79   public String getSoftwareVersion() {\r
80     return softwareVersion;\r
81   }\r
82 \r
83   public void setSoftwareVersion(String softwareVersion) {\r
84     this.softwareVersion = softwareVersion;\r
85   }\r
86 \r
87   public Map<String, String> getParameterMONameValueMap() {\r
88     return parameterMONameValueMap;\r
89   }\r
90 \r
91   public void setParameterMONameValueMap(Map<String, String> parameterMONameValueMap) {\r
92     this.parameterMONameValueMap = parameterMONameValueMap;\r
93   }\r
94 }\r