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
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : tr-069-adapter
4  * =================================================================================================
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.
6  * =================================================================================================
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You
9  * may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
14  * either express or implied. See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ===============LICENSE_END=======================================================================
17  */
18
19 package org.commscope.tr069adapter.netconf.entity;
20
21 import java.io.Serializable;
22
23 import javax.persistence.Column;
24 import javax.persistence.Entity;
25 import javax.persistence.GeneratedValue;
26 import javax.persistence.GenerationType;
27 import javax.persistence.Id;
28 import javax.persistence.Table;
29
30 @Entity
31 @Table(name = "netconf_server_details")
32 public class NetConfServerDetailsEntity implements Serializable {
33
34   private static final long serialVersionUID = 3572178771247249366L;
35
36   @Id
37   @GeneratedValue(strategy = GenerationType.AUTO)
38   private Long id;
39
40   @Column(name = "DEVICE_ID", length = 30)
41   private String deviceId;
42
43   @Column(name = "ENODEB_NAME", length = 255)
44   private String enodeBName;
45
46   @Column(name = "PORT", length = 10)
47   private String listenPort;
48
49   @Column(name = "SW_VERSION", length = 64)
50   private String swVersion;
51
52   @Column(name = "HW_VERSION", length = 64)
53   private String hwVersion;
54
55   public Long getId() {
56     return id;
57   }
58
59   public void setId(Long id) {
60     this.id = id;
61   }
62
63   public String getDeviceId() {
64     return deviceId;
65   }
66
67   public void setDeviceId(String deviceId) {
68     this.deviceId = deviceId;
69   }
70
71   public String getListenPort() {
72     return listenPort;
73   }
74
75   public void setListenPort(String listenPort) {
76     this.listenPort = listenPort;
77   }
78
79   public String getEnodeBName() {
80     return enodeBName;
81   }
82
83   public void setEnodeBName(String enodeBName) {
84     this.enodeBName = enodeBName;
85   }
86
87   public String getSwVersion() {
88     return swVersion;
89   }
90
91   public void setSwVersion(String swVersion) {
92     this.swVersion = swVersion;
93   }
94
95   public String getHwVersion() {
96     return hwVersion;
97   }
98
99   public void setHwVersion(String hwVersion) {
100     this.hwVersion = hwVersion;
101   }
102 }