[PORTAL-7] Rebase
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / domain / WidgetCatalogParameter.java
1 /*-\r
2  * ================================================================================\r
3  * ECOMP Portal\r
4  * ================================================================================\r
5  * Copyright (C) 2017 AT&T Intellectual Property\r
6  * ================================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  * \r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * \r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ================================================================================\r
19  */\r
20 package org.openecomp.portalapp.portal.domain;\r
21 \r
22 import org.openecomp.portalsdk.core.domain.support.DomainVo;\r
23 \r
24 public class WidgetCatalogParameter extends DomainVo{\r
25         \r
26         private static final long serialVersionUID = 1L;\r
27 \r
28         public WidgetCatalogParameter() {\r
29 \r
30         }\r
31         private Long id;\r
32 \r
33         private Long widgetId;\r
34 \r
35         private Long userId;\r
36 \r
37         private Long paramId;\r
38 \r
39         private String user_value;\r
40 \r
41         public Long getId() {\r
42                 return id;\r
43         }\r
44 \r
45         public void setId(Long id) {\r
46                 this.id = id;\r
47         }\r
48 \r
49         public Long getWidgetId() {\r
50                 return widgetId;\r
51         }\r
52 \r
53         public void setWidgetId(Long widgetId) {\r
54                 this.widgetId = widgetId;\r
55         }\r
56 \r
57         public String getUser_value() {\r
58                 return user_value;\r
59         }\r
60 \r
61         public void setUser_value(String user_value) {\r
62                 this.user_value = user_value;\r
63         }\r
64 \r
65         public Long getParamId() {\r
66                 return paramId;\r
67         }\r
68 \r
69         public void setParamId(Long paramId) {\r
70                 this.paramId = paramId;\r
71         }\r
72 \r
73         public Long getUserId() {\r
74                 return userId;\r
75         }\r
76 \r
77         public void setUserId(Long userId) {\r
78                 this.userId = userId;\r
79         }\r
80 \r
81         @Override\r
82         public String toString() {\r
83                 return "WidgetCatalogParameter [id=" + id + ", widgetId=" + widgetId + ", userId=" + userId + ", paramId="\r
84                                 + paramId + ", user_value=" + user_value + "]";\r
85         }\r
86 \r
87         \r
88 \r
89         \r
90 }\r