Development of NETCONF RPCs for tr-069 adapter to
[oam/tr069-adapter.git] / config-data / src / main / java / org / commscope / tr069adapter / config / model / ConfigFileContent.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
20 package org.commscope.tr069adapter.config.model;
21
22 import java.io.Serializable;
23
24 import javax.persistence.Column;
25 import javax.persistence.Entity;
26 import javax.persistence.GeneratedValue;
27 import javax.persistence.GenerationType;
28 import javax.persistence.Id;
29 import javax.persistence.Table;
30 import javax.persistence.UniqueConstraint;
31
32 @Entity
33 @Table(name = "config_file_content",
34     uniqueConstraints = @UniqueConstraint(columnNames = {"MACID", "SW_VERSION", "HW_VERSION"}))
35 public class ConfigFileContent implements Serializable {
36   private static final long serialVersionUID = -5435735270835950132L;
37
38   @Id
39   @GeneratedValue(strategy = GenerationType.AUTO)
40   @Column(name = "ID")
41   private Long id;
42
43   @Column(name = "MACID", length = 255)
44   private String macId;
45
46   @Column(name = "FILE_CONTENT", columnDefinition = "MEDIUMTEXT")
47   private String fileContent;
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 ConfigFileContent() {
56     super();
57   }
58
59   public String getMacId() {
60     return macId;
61   }
62
63   public void setMacId(String macId) {
64     this.macId = macId;
65   }
66
67   public String getFileContent() {
68     return fileContent;
69   }
70
71   public void setFileContent(String fileContent) {
72     this.fileContent = fileContent;
73   }
74
75   public Long getId() {
76     return id;
77   }
78
79   public void setId(Long id) {
80     this.id = id;
81   }
82
83   public String getSwVersion() {
84     return swVersion;
85   }
86
87   public void setSwVersion(String swVersion) {
88     this.swVersion = swVersion;
89   }
90
91   public String getHwVersion() {
92     return hwVersion;
93   }
94
95   public void setHwVersion(String hwVersion) {
96     this.hwVersion = hwVersion;
97   }
98 }