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