[PORTAL-7] Rebase
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / domain / EPWidgetsManualSortPreference.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 EPWidgetsManualSortPreference extends DomainVo{\r
25 \r
26         private static final long serialVersionUID = 4607102334801223570L;\r
27         private int userId;\r
28         private Long widgetId;\r
29         private int widgetRow;\r
30         private int widgetCol;\r
31         private int widgetWidth;\r
32         private int widgetHeight;\r
33 \r
34         public int getUserId() {\r
35                 return userId;\r
36         }\r
37         public void setUserId(int userId) {\r
38                 this.userId = userId;\r
39         }\r
40         public Long getWidgetId() {\r
41                 return widgetId;\r
42         }\r
43         public void setWidgetId(Long widgetId) {\r
44                 this.widgetId = widgetId;\r
45         }\r
46         public int getWidgetRow() {\r
47                 return widgetRow;\r
48         }\r
49         public void setWidgetRow(int widgetRow) {\r
50                 this.widgetRow = widgetRow;\r
51         }\r
52         public int getWidgetCol() {\r
53                 return widgetCol;\r
54         }\r
55         public void setWidgetCol(int widgetCol) {\r
56                 this.widgetCol = widgetCol;\r
57         }\r
58         public int getWidgetWidth() {\r
59                 return widgetWidth;\r
60         }\r
61         public void setWidgetWidth(int widgetWidth) {\r
62                 this.widgetWidth = widgetWidth;\r
63         }\r
64         public int getWidgetHeight() {\r
65                 return widgetHeight;\r
66         }\r
67         public void setWidgetHeight(int widgetHeight) {\r
68                 this.widgetHeight = widgetHeight;\r
69         }\r
70 }\r