aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2017-09-11 13:44:50 +0000
committerGerrit Code Review <gerrit@onap.org>2017-09-11 13:44:50 +0000
commit14e0b89cb0c1b067e79b29ab943c6c1e8fd5aa8b (patch)
tree97f58df793229cd2a78d8ad9b3bdedcdd722c2a3
parentdb185217bcfef796bd5f6f0ae14b3b504f1a3c67 (diff)
parentaf5a763bf7d5ae67629d9298a74474bf791afc4f (diff)
Merge "Fix few Critical sonar issues"
-rw-r--r--resource-assignment/provider/src/main/java/org/onap/ccsdk/sli/adaptors/ra/comp/EndPointAllocatorImpl.java37
1 files changed, 35 insertions, 2 deletions
diff --git a/resource-assignment/provider/src/main/java/org/onap/ccsdk/sli/adaptors/ra/comp/EndPointAllocatorImpl.java b/resource-assignment/provider/src/main/java/org/onap/ccsdk/sli/adaptors/ra/comp/EndPointAllocatorImpl.java
index 0f488bc6..db30bf62 100644
--- a/resource-assignment/provider/src/main/java/org/onap/ccsdk/sli/adaptors/ra/comp/EndPointAllocatorImpl.java
+++ b/resource-assignment/provider/src/main/java/org/onap/ccsdk/sli/adaptors/ra/comp/EndPointAllocatorImpl.java
@@ -8,9 +8,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -22,6 +22,7 @@
package org.onap.ccsdk.sli.adaptors.ra.comp;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
@@ -201,6 +202,38 @@ public class EndPointAllocatorImpl implements EndPointAllocator {
}
return 0;
}
+
+ @Override
+ public boolean equals(Object object) {
+ if (this == object) {
+ return true;
+ }
+ if (!(object instanceof PrefEquipment)) {
+ return false;
+ }
+ if (!super.equals(object)) {
+ return false;
+ }
+
+ PrefEquipment that = (PrefEquipment) object;
+ if (equipData != null ? !equipData.equals(that.equipData) : that.equipData != null) {
+ return false;
+ }
+
+ if (!Arrays.equals(prefNumbers, that.prefNumbers)) {
+ return false;
+ }
+
+ return true;
+ }
+
+ @Override
+ public int hashCode() {
+ int result = super.hashCode();
+ result = 31 * result + (equipData != null ? equipData.hashCode() : 0);
+ result = 31 * result + Arrays.hashCode(prefNumbers);
+ return result;
+ }
}
public void setEndPointAllocationDefinitionMap(