Merge "Sonar: Reduce cyclomatic complexity"
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / portal / domain / EPUserApp.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.domain;
39
40 import javax.validation.Valid;
41 import org.onap.portalsdk.core.domain.support.DomainVo;
42
43 @SuppressWarnings("rawtypes")
44 public class EPUserApp extends DomainVo implements java.io.Serializable, Comparable {
45
46         private static final long serialVersionUID = 1L;
47         
48         private Long userId;
49         @Valid
50         private EPApp app;
51         @Valid
52         private EPRole role;
53         private Integer priority;
54         
55         public EPUserApp() {
56         }
57         
58         public Long getAppId() {
59                 return this.getApp().getId();
60         }
61         
62         public Long getRoleId() {
63                 return (role == null) ? null : role.getId();
64         }
65         
66         public Long getAppRoleId() {
67                 return this.role.getAppRoleId();
68         }
69                 
70         @Override 
71         public String toString() {
72                 return "[u: "+getUserId()+"; a: "+getAppId()+", r: "+getRoleId()+"; appRoleId: "+getAppRoleId()+"]";
73         }
74         
75         public Long getUserId() {
76                 return userId;
77         }
78
79         public void setUserId(Long id) {
80                 this.userId = id;
81         }
82
83         public EPApp getApp() {
84                 return app;
85         }
86
87         public void setApp(EPApp app) {
88                 this.app = app;
89         }
90
91         public EPRole getRole() {
92                 return role;
93         }
94
95         public void setRole(EPRole role) {
96                 this.role = role;
97         }
98                 
99         public Integer getPriority() {
100                 return (this.priority == null) ? 1 : priority;
101         }
102
103         public void setPriority(Integer priority) {
104                 this.priority = priority;
105         }
106
107         @Override
108         public boolean equals(Object other) {
109                 if ((this == other))
110                         return true;
111                 if ((other == null))
112                         return false;
113                 if (!(other instanceof EPUserApp))
114                         return false;
115                 EPUserApp castOther = (EPUserApp) other;
116
117                 return (otherUserIdIsSameAsThisUserId(castOther))
118                                 && (otherAppIdIsSameAsThis(castOther))
119                                 && (otherRoleIsSameAsThis(castOther))
120                                 && (otherPriorityIsSameAsThis(castOther));
121         }
122
123         public int hashCode() {
124                 int result = 17;
125
126                 result = 37 * result + (int) (this.getUserId()==null ? 0 : this.getUserId().intValue());
127                 result = 37 * result + (int) (this.getApp().getId()==null ? 0 : this.getApp().getId().intValue());
128                 result = 37 * result + (int) (this.getRole().getId()==null ? 0 : this.getRole().getId().intValue());
129                 result = 37 * result + (int) (this.priority==null ? 0 : this.priority);
130                 return result;
131         }
132
133         public int compareTo(Object other){
134             EPUserApp castOther = (EPUserApp) other;
135
136             Long c1 = (this.getUserId()==null ? 0 : this.getUserId()) + (this.getApp()==null||this.getApp().getId()==null ? 0 : this.getApp().getId()) + (this.getRole()==null||this.getRole().getId()==null ? 0 : this.getRole().getId()) + (this.priority==null ? 0 : this.priority);
137             Long c2 = (castOther.getUserId()==null ? 0 : castOther.getUserId()) + (castOther.getApp()==null||castOther.getApp().getId()==null ? 0 : castOther.getApp().getId()) + (castOther.getRole()==null||castOther.getRole().getId()==null ? 0 : castOther.getRole().getId()) + (castOther.priority==null ? 0 : castOther.priority);
138
139             return c1.compareTo(c2);
140         }
141         private boolean otherPriorityIsSameAsThis(EPUserApp other){
142                 return (this.priority==null && other.getPriority()==null) || this.getPriority().equals(other.getPriority());
143         }
144
145         private boolean otherRoleIsSameAsThis(EPUserApp other){
146                 return this.getRole().getId().equals(other.getRole().getId());
147         }
148
149         private boolean otherAppIdIsSameAsThis(EPUserApp other){
150                 return this.getApp().getId().equals(other.getApp().getId());
151         }
152
153         private boolean otherUserIdIsSameAsThisUserId(EPUserApp other){
154                 return this.getUserId().equals(other.getUserId());
155         }
156 }