diff options
author | Jim Hahn <jrh3@att.com> | 2019-07-08 15:54:31 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-08 15:54:31 +0000 |
commit | 0cbc0af0f6f00d6d2bfd9826fe17d6a758145e08 (patch) | |
tree | e5c5341db6807791f766d97df4d2326b6aa048e7 /common-logging/src/main/java/org/onap | |
parent | 50bb64276e023d9ca9a3bb14511899554198324e (diff) | |
parent | c90381fe4e3fa7cae25fd2173ee5f8ea56766152 (diff) |
Merge "Replace ONAP-logging getters/setters with lombok"
Diffstat (limited to 'common-logging/src/main/java/org/onap')
-rw-r--r-- | common-logging/src/main/java/org/onap/policy/common/logging/eelf/EventData.java | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/common-logging/src/main/java/org/onap/policy/common/logging/eelf/EventData.java b/common-logging/src/main/java/org/onap/policy/common/logging/eelf/EventData.java index 1ed11344..23be38ba 100644 --- a/common-logging/src/main/java/org/onap/policy/common/logging/eelf/EventData.java +++ b/common-logging/src/main/java/org/onap/policy/common/logging/eelf/EventData.java @@ -55,30 +55,6 @@ public class EventData { this.endTime = endTime; } - public String getRequestId() { - return requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - public Instant getStartTime() { - return startTime; - } - - public void setStartTime(Instant startTime) { - this.startTime = startTime; - } - - public Instant getEndTime() { - return endTime; - } - - public void setEndTime(Instant endTime) { - this.endTime = endTime; - } - @Override public String toString() { return requestId + " Starting Time : " + this.startTime + " Ending Time : " + this.endTime; |