Null check for ClientResponse in PolicyUril.java
[portal.git] / ecomp-portal-widget-ms / widget-ms / src / main / java / org / openecomp / portalapp / widget / domain / WidgetFile.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the “License”);
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 package org.openecomp.portalapp.widget.domain;
39
40 import javax.persistence.Column;
41 import javax.persistence.Entity;
42 import javax.persistence.Id;
43 import javax.persistence.Table;
44
45 @Entity
46 @Table(name = "ep_widget_catalog_files")
47 public class WidgetFile {
48         @Id
49         @Column (name = "file_id")
50         private int id;
51         
52         @Column(name = "widget_name")
53         private String name;
54         
55         @Column(name = "widget_id")
56         private long widgetId;
57         
58         @Column(name = "markup_html")
59         private byte[] markup;
60         
61         @Column(name = "controller_js")
62         private  byte[] controller;
63         
64         @Column(name = "framework_js")
65         private  byte[] framework;
66
67         @Column(name = "widget_css")
68         private  byte[] css;
69
70         public int getId() {
71                 return id;
72         }
73
74         public void setId(int id) {
75                 this.id = id;
76         }
77
78         public String getName() {
79                 return name;
80         }
81
82         public void setName(String name) {
83                 this.name = name;
84         }
85
86         public byte[] getMarkup() {
87                 return markup;
88         }
89
90         public void setMarkup(byte[] markup) {
91                 this.markup = markup;
92         }
93
94         public byte[] getController() {
95                 return controller;
96         }
97
98         public void setController(byte[] controller) {
99                 this.controller = controller;
100         }
101
102         public byte[] getFramework() {
103                 return framework;
104         }
105
106         public void setFramework(byte[] framework) {
107                 this.framework = framework;
108         }
109
110         public byte[] getCss() {
111                 return css;
112         }
113
114         public void setCss(byte[] css) {
115                 this.css = css;
116         }
117
118         public long getWidgetId() {
119                 return widgetId;
120         }
121
122         public void setWidgetId(long widgetId) {
123                 this.widgetId = widgetId;
124         }
125
126         @Override
127         public String toString() {
128                 return "WidgetFile [name=" + name + ", widgetId=" + widgetId + "]";
129         }
130         
131         
132     
133 }