Development of NETCONF RPCs for tr-069 adapter to
[oam/tr069-adapter.git] / netconf-server / src / main / java / org / commscope / tr069adapter / netconf / entity / NetConfServerDetailsEntity.java
index e37fd99..b6ce916 100644 (file)
-/*\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.netconf.entity;\r
-\r
-import java.io.Serializable;\r
-\r
-import javax.persistence.Column;\r
-import javax.persistence.Entity;\r
-import javax.persistence.GeneratedValue;\r
-import javax.persistence.GenerationType;\r
-import javax.persistence.Id;\r
-import javax.persistence.Table;\r
-\r
-@Entity\r
-@Table(name = "netconf_server_details")\r
-public class NetConfServerDetailsEntity implements Serializable {\r
-\r
-  private static final long serialVersionUID = 3572178771247249366L;\r
-\r
-  @Id\r
-  @GeneratedValue(strategy = GenerationType.AUTO)\r
-  private Long id;\r
-\r
-  @Column(name = "DEVICE_ID", length = 30)\r
-  private String deviceId;\r
-\r
-  @Column(name = "ENODEB_NAME", length = 255)\r
-  private String enodeBName;\r
-\r
-  @Column(name = "PORT", length = 10)\r
-  private String listenPort;\r
-\r
-  @Column(name = "SW_VERSION", length = 64)\r
-  private String swVersion;\r
-\r
-  @Column(name = "HW_VERSION", length = 64)\r
-  private String hwVersion;\r
-\r
-  public Long getId() {\r
-    return id;\r
-  }\r
-\r
-  public void setId(Long id) {\r
-    this.id = id;\r
-  }\r
-\r
-  public String getDeviceId() {\r
-    return deviceId;\r
-  }\r
-\r
-  public void setDeviceId(String deviceId) {\r
-    this.deviceId = deviceId;\r
-  }\r
-\r
-  public String getListenPort() {\r
-    return listenPort;\r
-  }\r
-\r
-  public void setListenPort(String listenPort) {\r
-    this.listenPort = listenPort;\r
-  }\r
-\r
-  public String getEnodeBName() {\r
-    return enodeBName;\r
-  }\r
-\r
-  public void setEnodeBName(String enodeBName) {\r
-    this.enodeBName = enodeBName;\r
-  }\r
-\r
-  public String getSwVersion() {\r
-    return swVersion;\r
-  }\r
-\r
-  public void setSwVersion(String swVersion) {\r
-    this.swVersion = swVersion;\r
-  }\r
-\r
-  public String getHwVersion() {\r
-    return hwVersion;\r
-  }\r
-\r
-  public void setHwVersion(String hwVersion) {\r
-    this.hwVersion = hwVersion;\r
-  }\r
-}\r
+/*
+ * ============LICENSE_START========================================================================
+ * ONAP : tr-069-adapter
+ * =================================================================================================
+ * Copyright (C) 2020 CommScope Inc Intellectual Property.
+ * =================================================================================================
+ * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You
+ * may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
+ * either express or implied. See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ===============LICENSE_END=======================================================================
+ */
+
+package org.commscope.tr069adapter.netconf.entity;
+
+import java.io.Serializable;
+
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.Table;
+
+@Entity
+@Table(name = "netconf_server_details")
+public class NetConfServerDetailsEntity implements Serializable {
+
+  private static final long serialVersionUID = 3572178771247249366L;
+
+  @Id
+  @GeneratedValue(strategy = GenerationType.AUTO)
+  private Long id;
+
+  @Column(name = "DEVICE_ID", length = 30)
+  private String deviceId;
+
+  @Column(name = "ENODEB_NAME", length = 255)
+  private String enodeBName;
+
+  @Column(name = "PORT", length = 10)
+  private String listenPort;
+
+  @Column(name = "SW_VERSION", length = 64)
+  private String swVersion;
+
+  @Column(name = "HW_VERSION", length = 64)
+  private String hwVersion;
+
+  public Long getId() {
+    return id;
+  }
+
+  public void setId(Long id) {
+    this.id = id;
+  }
+
+  public String getDeviceId() {
+    return deviceId;
+  }
+
+  public void setDeviceId(String deviceId) {
+    this.deviceId = deviceId;
+  }
+
+  public String getListenPort() {
+    return listenPort;
+  }
+
+  public void setListenPort(String listenPort) {
+    this.listenPort = listenPort;
+  }
+
+  public String getEnodeBName() {
+    return enodeBName;
+  }
+
+  public void setEnodeBName(String enodeBName) {
+    this.enodeBName = enodeBName;
+  }
+
+  public String getSwVersion() {
+    return swVersion;
+  }
+
+  public void setSwVersion(String swVersion) {
+    this.swVersion = swVersion;
+  }
+
+  public String getHwVersion() {
+    return hwVersion;
+  }
+
+  public void setHwVersion(String hwVersion) {
+    this.hwVersion = hwVersion;
+  }
+}