diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2017-07-25 14:50:12 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-07-25 14:50:12 +0000 |
commit | 85f5fade13c0c326c808cea21d85e79814fd862a (patch) | |
tree | e3805f790a80a8999f2cf89d8994eba3ba85b47a /common-logging/src/main | |
parent | 8a6170b76693a10c37237978c33e94b3f8bf8f0d (diff) | |
parent | a9cf7cad63d4e241ce46dcfc367ead2279c3fa69 (diff) |
Merge "[POLICY-8] clean commons from sonar blockers"
Diffstat (limited to 'common-logging/src/main')
-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; } - } |