diff options
author | Jim Hahn <jrh3@att.com> | 2019-07-08 09:32:51 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2019-07-08 09:32:51 -0400 |
commit | c90381fe4e3fa7cae25fd2173ee5f8ea56766152 (patch) | |
tree | 1e9f9475a34adc0c964e31cbfa1210a3ef30f56d /common-logging/src/main/java | |
parent | 65a6ac2f3621e4a933eb72415d3de09b35ade121 (diff) |
Replace ONAP-logging getters/setters with lombok
Added lombok annotations to EvenData, but forgot to remove
the get/set methods.
Change-Id: I4dc21fdf1e57e2d326a122ddebe10ef99a9b2638
Issue-ID: POLICY-1791
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'common-logging/src/main/java')
-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; |