Add equals & hascode methods
[portal.git] / portal-BE / src / main / java / org / onap / portal / domain / dto / transport / CentralV2UserApp.java
index 69ff4a2..8cc3a5a 100644 (file)
@@ -41,6 +41,7 @@
 package org.onap.portal.domain.dto.transport;
 
 import java.io.Serializable;
+import java.util.Objects;
 import lombok.AllArgsConstructor;
 import lombok.Getter;
 import lombok.NoArgsConstructor;
@@ -50,23 +51,49 @@ import lombok.Setter;
 @Setter
 @NoArgsConstructor
 @AllArgsConstructor
-public class CentralV2UserApp implements Serializable, Comparable{
+public class CentralV2UserApp implements Serializable, Comparable {
 
-       private static final long serialVersionUID = 4954830080839125389L;
+    private static final long serialVersionUID = 4954830080839125389L;
 
-       private Long userId;
-       private CentralApp app;
-       private CentralV2Role role;
-       private Integer priority;
+    private Long userId;
+    private CentralApp app;
+    private CentralV2Role role;
+    private Integer priority;
 
-       public int compareTo(Object other){
-           CentralV2UserApp castOther = (CentralV2UserApp) other;
+    public int compareTo(Object other) {
+        CentralV2UserApp castOther = (CentralV2UserApp) other;
 
         Long c1 = (this.getUserId() == null ? 0 : this.getUserId()) + (this.priority == null ? 0 : this.priority);
         Long c2 = (castOther.getUserId() == null ? 0 : castOther.getUserId());
         c2 += (castOther.getApp() == null || castOther.getApp().getId() == null ? 0 : castOther.getApp().getId());
         c2 += (castOther.priority == null ? 0 : castOther.priority);
 
-           return c1.compareTo(c2);
-       }
+        return c1.compareTo(c2);
+    }
+
+    @Override
+    public int hashCode() {
+        final int prime = 31;
+        int result = 1;
+        result = prime * result + ((app == null) ? 0 : app.hashCode());
+        result = prime * result + ((priority == null) ? 0 : priority.hashCode());
+        result = prime * result + ((role == null) ? 0 : role.hashCode());
+        result = prime * result + ((userId == null) ? 0 : userId.hashCode());
+        return result;
+    }
+
+    @Override
+    public boolean equals(Object other) {
+        if (this == other) {
+            return true;
+        }
+        if (!(other instanceof CentralV2UserApp)) {
+            return false;
+        }
+        CentralV2UserApp castOther = (CentralV2UserApp) other;
+        return Objects.equals(this.userId, castOther.userId) &&
+                Objects.equals(this.app, castOther.app) &&
+                Objects.equals(this.role, castOther.role) &&
+                Objects.equals(this.priority, castOther.priority);
+    }
 }