Include impacted changes for APPC-346,APPC-348
[appc.git] / appc-dispatcher / appc-dispatcher-common / domain-model-lib / src / main / java / org / onap / appc / domainmodel / lcm / CommonHeader.java
index 7c44efe..8c7d73c 100644 (file)
 
 package org.onap.appc.domainmodel.lcm;
 
-import java.time.Instant;
+import java.util.Date;
 
 
 public class CommonHeader {
 
     private Flags flags;
-    private Instant timestamp;
+    private Date timestamp;
     private String apiVer;
     private String originatorId;
     private String requestId;
@@ -44,11 +44,11 @@ public class CommonHeader {
         this.flags = flags;
     }
 
-    public Instant getTimeStamp() {
+    public Date getTimeStamp() {
         return timestamp;
     }
 
-    public void setTimestamp(Instant timestamp) {
+    public void setTimestamp(Date timestamp) {
         this.timestamp = timestamp;
     }