Replace ONAP-logging getters/setters with lombok 24/91024/1
authorJim Hahn <jrh3@att.com>
Mon, 8 Jul 2019 13:32:51 +0000 (09:32 -0400)
committerJim Hahn <jrh3@att.com>
Mon, 8 Jul 2019 13:32:51 +0000 (09:32 -0400)
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>
common-logging/src/main/java/org/onap/policy/common/logging/eelf/EventData.java

index 1ed1134..23be38b 100644 (file)
@@ -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;