Updated to be an instance variable 94/90994/3
authorjegadeeshbabu1 <jegabab1@in.ibm.com>
Sun, 7 Jul 2019 16:49:24 +0000 (22:19 +0530)
committerPatrick Brady <patrick.brady@att.com>
Wed, 10 Jul 2019 18:28:26 +0000 (18:28 +0000)
Removed static keyword

Issue-ID: APPC-1636
Change-Id: I507d306f50acc010db4d944a078b4d15f5c719a4
Signed-off-by: jegadeeshbabu1 <jegabab1@in.ibm.com>
appc-event-listener/appc-event-listener-bundle/src/main/java/org/onap/appc/listener/LCM/model/CommonHeader.java

index d60adc1..b793318 100644 (file)
@@ -6,6 +6,8 @@
  * ================================================================================
  * Copyright (C) 2017 Amdocs
  * =============================================================================
+ * Modification Copyright (C) 2019 IBM
+ * =============================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -46,7 +48,7 @@ public class CommonHeader implements Serializable {
     @JsonProperty("flags")
     private Map<String, String> flags;
 
-    private static final DateFormat ZULU_FORMATTER = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SS'Z'");
+    private final DateFormat ZULU_FORMATTER = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SS'Z'");
 
     public CommonHeader() {
     }