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