diff options
author | Dan Timoney <dtimoney@att.com> | 2017-09-11 13:44:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-11 13:44:50 +0000 |
commit | 14e0b89cb0c1b067e79b29ab943c6c1e8fd5aa8b (patch) | |
tree | 97f58df793229cd2a78d8ad9b3bdedcdd722c2a3 | |
parent | db185217bcfef796bd5f6f0ae14b3b504f1a3c67 (diff) | |
parent | af5a763bf7d5ae67629d9298a74474bf791afc4f (diff) |
Merge "Fix few Critical sonar issues"
-rw-r--r-- | resource-assignment/provider/src/main/java/org/onap/ccsdk/sli/adaptors/ra/comp/EndPointAllocatorImpl.java | 37 |
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 0f488bc67..db30bf62d 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( |