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