[PORTAL-16 PORTAL-18] Widget ms; staging
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / transport / EPWidgetsSortPreference.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.transport;
21
22 import java.util.List;
23
24 public class EPWidgetsSortPreference {
25         
26         private int SizeX;
27         private int SizeY;
28         private String headerText;
29         private String url;
30         private Long widgetid;
31         private List<Object> attrb;
32         private String widgetIdentifier;
33         private int row;
34         private int col;
35         
36         public String getWidgetIdentifier() {
37                 return widgetIdentifier;
38         }
39         public List<Object> getAttrb() {
40                 return attrb;
41         }
42         public void setAttrb(List<Object> attrb) {
43                 this.attrb = attrb;
44         }
45         public void setWidgetIdentifier(String widgetIdentifier) {
46                 this.widgetIdentifier = widgetIdentifier;
47         }
48         public int getSizeX() {
49                 return SizeX;
50         }
51         public void setSizeX(int sizeX) {
52                 SizeX = sizeX;
53         }
54         public int getSizeY() {
55                 return SizeY;
56         }
57         public void setSizeY(int sizeY) {
58                 SizeY = sizeY;
59         }
60         public String getHeaderText() {
61                 return headerText;
62         }
63         public void setHeaderText(String headerText) {
64                 this.headerText = headerText;
65         }
66         public String getUrl() {
67                 return url;
68         }
69         public void setUrl(String url) {
70                 this.url = url;
71         }
72         public Long getWidgetid() {
73                 return widgetid;
74         }
75         public void setWidgetid(Long widgetid) {
76                 this.widgetid = widgetid;
77         }
78         public int getRow() {
79                 return row;
80         }
81         public void setRow(int row) {
82                 this.row = row;
83         }
84         public int getCol() {
85                 return col;
86         }
87         public void setCol(int col) {
88                 this.col = col;
89         }
90         
91         
92 }