Security/ Package Name changes
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / portal / domain / PersUserWidgetSelection.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 package org.onap.portalapp.portal.domain;
39
40 import org.onap.portalsdk.core.domain.support.DomainVo;
41
42 /**
43  * Models a row in the table with personalization of user widget selections.
44  */
45 public class PersUserWidgetSelection extends DomainVo {
46
47         /**
48          * 
49          */
50         private static final long serialVersionUID = -6547880514779039200L;
51
52         private Long userId;
53
54         private Long widgetId;
55
56         private String statusCode;
57
58         public PersUserWidgetSelection() {}
59         
60         /**
61          * Convenience constructor
62          * 
63          * @param id
64          * @param userId
65          * @param widgetId
66          * @param statusCode
67          */
68         public PersUserWidgetSelection(final Long id, final Long userId, final Long widgetId, final String statusCode) {
69                 super.id = id;
70                 this.userId = userId;
71                 this.widgetId = widgetId;
72                 this.statusCode = statusCode;
73         }
74         
75         public Long getWidgetId() {
76                 return widgetId;
77         }
78
79         public void setWidgetId(Long widgetId) {
80                 this.widgetId = widgetId;
81         }
82
83         public Long getUserId() {
84                 return userId;
85         }
86
87         public void setUserId(Long userId) {
88                 this.userId = userId;
89         }
90
91         public String getStatusCode() {
92                 return statusCode;
93         }
94
95         public void setStatusCode(String statusCode) {
96                 this.statusCode = statusCode;
97         }
98
99         @Override
100         public int hashCode() {
101                 final int prime = 31;
102                 int result = 1;
103                 result = prime * result + ((statusCode == null) ? 0 : statusCode.hashCode());
104                 result = prime * result + ((userId == null) ? 0 : userId.hashCode());
105                 result = prime * result + ((widgetId == null) ? 0 : widgetId.hashCode());
106                 return result;
107         }
108
109         @Override
110         public boolean equals(Object obj) {
111                 if (this == obj)
112                         return true;
113                 if (obj == null)
114                         return false;
115                 if (getClass() != obj.getClass())
116                         return false;
117                 PersUserWidgetSelection other = (PersUserWidgetSelection) obj;
118                 if (statusCode == null) {
119                         if (other.statusCode != null)
120                                 return false;
121                 } else if (!statusCode.equals(other.statusCode))
122                         return false;
123                 if (userId == null) {
124                         if (other.userId != null)
125                                 return false;
126                 } else if (!userId.equals(other.userId))
127                         return false;
128                 if (widgetId == null) {
129                         if (other.widgetId != null)
130                                 return false;
131                 } else if (!widgetId.equals(other.widgetId))
132                         return false;
133                 return true;
134         }
135         
136 }