Initial source code
[oam/tr069-adapter.git] / acs / common / src / main / java / org / commscope / tr069adapter / acs / common / dto / ConfigurationData.java
diff --git a/acs/common/src/main/java/org/commscope/tr069adapter/acs/common/dto/ConfigurationData.java b/acs/common/src/main/java/org/commscope/tr069adapter/acs/common/dto/ConfigurationData.java
new file mode 100644 (file)
index 0000000..45e3035
--- /dev/null
@@ -0,0 +1,94 @@
+/*\r
+ * ============LICENSE_START========================================================================\r
+ * ONAP : tr-069-adapter\r
+ * =================================================================================================\r
+ * Copyright (C) 2020 CommScope Inc Intellectual Property.\r
+ * =================================================================================================\r
+ * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,\r
+ * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You\r
+ * may obtain a copy of the License at\r
+ *\r
+ * http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\r
+ * either express or implied. See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ * ===============LICENSE_END=======================================================================\r
+ */\r
+\r
+package org.commscope.tr069adapter.acs.common.dto;\r
+\r
+import java.io.Serializable;\r
+import java.util.Map;\r
+\r
+/**\r
+ * Domain Object for Service Settings<br>\r
+ * \r
+ * @version 1.0\r
+ * @since September 27, 2019\r
+ * @author prashantk\r
+ */\r
+\r
+public class ConfigurationData implements Serializable {\r
+  /**\r
+   * \r
+   */\r
+  private static final long serialVersionUID = -6219229519491907038L;\r
+\r
+  private String oui;\r
+  private String productClass;\r
+  private String softwareVersion;\r
+  private String hardwareVersion;\r
+\r
+  private String localDn;// ="0005B95196D0"\r
+\r
+  private Map<String, String> parameterMONameValueMap;\r
+\r
+  public String getLocalDn() {\r
+    return localDn;\r
+  }\r
+\r
+  public void setLocalDn(String localDn) {\r
+    this.localDn = localDn;\r
+  }\r
+\r
+  public String getHardwareVersion() {\r
+    return hardwareVersion;\r
+  }\r
+\r
+  public void setHardwareVersion(String hardwareVersion) {\r
+    this.hardwareVersion = hardwareVersion;\r
+  }\r
+\r
+  public String getProductClass() {\r
+    return productClass;\r
+  }\r
+\r
+  public void setProductClass(String productClass) {\r
+    this.productClass = productClass;\r
+  }\r
+\r
+  public String getOUI() {\r
+    return oui;\r
+  }\r
+\r
+  public void setOUI(String oUI) {\r
+    oui = oUI;\r
+  }\r
+\r
+  public String getSoftwareVersion() {\r
+    return softwareVersion;\r
+  }\r
+\r
+  public void setSoftwareVersion(String softwareVersion) {\r
+    this.softwareVersion = softwareVersion;\r
+  }\r
+\r
+  public Map<String, String> getParameterMONameValueMap() {\r
+    return parameterMONameValueMap;\r
+  }\r
+\r
+  public void setParameterMONameValueMap(Map<String, String> parameterMONameValueMap) {\r
+    this.parameterMONameValueMap = parameterMONameValueMap;\r
+  }\r
+}\r