diff options
author | Jorge Hernandez <jh1730@att.com> | 2017-07-24 11:24:40 -0500 |
---|---|---|
committer | Jorge Hernandez <jh1730@att.com> | 2017-07-24 11:24:40 -0500 |
commit | a9cf7cad63d4e241ce46dcfc367ead2279c3fa69 (patch) | |
tree | bbf5aaeb2f7b527d90fba614d29db6560f6382d4 /common-logging/src | |
parent | bd4272c9ed550bd68ccaa3a850f1295bca583ed5 (diff) |
[POLICY-8] clean commons from sonar blockers
Change-Id: Ibcc238b21d6ff860a3df80e8bd570a14f5367b5d
Signed-off-by: Jorge Hernandez <jh1730@att.com>
Diffstat (limited to 'common-logging/src')
-rw-r--r-- | common-logging/src/main/java/org/openecomp/policy/common/logging/eelf/EventData.java | 35 |
1 files changed, 25 insertions, 10 deletions
diff --git a/common-logging/src/main/java/org/openecomp/policy/common/logging/eelf/EventData.java b/common-logging/src/main/java/org/openecomp/policy/common/logging/eelf/EventData.java index 549651fb..eb0bffc7 100644 --- a/common-logging/src/main/java/org/openecomp/policy/common/logging/eelf/EventData.java +++ b/common-logging/src/main/java/org/openecomp/policy/common/logging/eelf/EventData.java @@ -73,21 +73,36 @@ public class EventData { public String toString(){ return requestID + " Starting Time : " + this.startTime + " Ending Time : " + this.endTime; } + @Override - public int hashCode(){ - final int prime =31; - int result =1; - result = prime * result +((requestID == null) ? 0: requestID.hashCode()); + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((requestID == null) ? 0 : requestID.hashCode()); return result; } + @Override - public boolean equals(Object obj){ - - String requestId = (String) obj; - if(requestID != null && requestID.equals(requestId)){ + public boolean equals(Object obj) { + if (this == obj) return true; + if (obj == null) + return false; + if (obj instanceof String) { + String requestId = (String) obj; + if(requestID != null && requestID.equals(requestId)){ + return true; + } + return false; } - return false; + if (getClass() != obj.getClass()) + return false; + EventData other = (EventData) obj; + if (requestID == null) { + if (other.requestID != null) + return false; + } else if (!requestID.equals(other.requestID)) + return false; + return true; } - } |