1eb27e7f87c16027e5d2c1878b746a36656ca33d
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / portal / transport / CentralUserApp.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  * 
37  */
38 package org.onap.portalapp.portal.transport;
39
40 import java.io.Serializable;
41
42 @SuppressWarnings("rawtypes")
43 public class CentralUserApp implements Serializable, Comparable {
44
45         private static final long serialVersionUID = -1140858385803822099L;
46         private Long userId;
47         private CentralApp app;
48         private CentralRole role;
49         private Short priority;
50
51         /**
52          * @return the userId
53          */
54         public Long getUserId() {
55                 return userId;
56         }
57
58         /**
59          * @param userId
60          *            the userId to set
61          */
62         public void setUserId(Long userId) {
63                 this.userId = userId;
64         }
65
66         /**
67          * @return the app
68          */
69         public CentralApp getApp() {
70                 return app;
71         }
72
73         /**
74          * @param app
75          *            the app to set
76          */
77         public void setApp(CentralApp app) {
78                 this.app = app;
79         }
80
81         /**
82          * @return the role
83          */
84         public CentralRole getRole() {
85                 return role;
86         }
87
88         /**
89          * @param role
90          *            the role to set
91          */
92         public void setRole(CentralRole role) {
93                 this.role = role;
94         }
95
96         /**
97          * @return the priority
98          */
99         public Short getPriority() {
100                 return priority;
101         }
102
103         /**
104          * @param priority
105          *            the priority to set
106          */
107         public void setPriority(Short priority) {
108                 this.priority = priority;
109         }
110
111         @Override
112         public int compareTo(Object obj) {
113                 String c1 = getRole().getName();
114                 String c2 = ((CentralUserApp) obj).getRole().getName();
115
116                 return (c1 == null || c2 == null) ? 1 : c1.compareTo(c2);
117         }
118
119         @Override
120         public int hashCode() {
121                 final int prime = 31;
122                 int result = 1;
123                 result = prime * result + ((role == null) ? 0 : role.hashCode());
124                 return result;
125         }
126
127         @Override
128         public boolean equals(Object obj) {
129                 if (this == obj)
130                         return true;
131                 if (obj == null)
132                         return false;
133                 if (getClass() != obj.getClass())
134                         return false;
135                 CentralUserApp other = (CentralUserApp) obj;
136                 if (role == null) {
137                         if (other.role != null)
138                                 return false;
139                 } else if (!role.equals(other.role))
140                         return false;
141                 return true;
142         }
143
144 }