diff options
author | jegadeeshbabu1 <jegabab1@in.ibm.com> | 2019-07-07 22:19:24 +0530 |
---|---|---|
committer | Patrick Brady <patrick.brady@att.com> | 2019-07-10 18:28:26 +0000 |
commit | e87214033cd8573391db5c980ee3e029f891f31c (patch) | |
tree | d6337606d8da0e4a83ccd5fb693f411247af285a | |
parent | ad12cef6d34bf3fa95e9cd88c82e30bbd06d9ad7 (diff) |
Updated to be an instance variable
Removed static keyword
Issue-ID: APPC-1636
Change-Id: I507d306f50acc010db4d944a078b4d15f5c719a4
Signed-off-by: jegadeeshbabu1 <jegabab1@in.ibm.com>
-rw-r--r-- | appc-event-listener/appc-event-listener-bundle/src/main/java/org/onap/appc/listener/LCM/model/CommonHeader.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/appc-event-listener/appc-event-listener-bundle/src/main/java/org/onap/appc/listener/LCM/model/CommonHeader.java b/appc-event-listener/appc-event-listener-bundle/src/main/java/org/onap/appc/listener/LCM/model/CommonHeader.java index d60adc1da..b7933184c 100644 --- a/appc-event-listener/appc-event-listener-bundle/src/main/java/org/onap/appc/listener/LCM/model/CommonHeader.java +++ b/appc-event-listener/appc-event-listener-bundle/src/main/java/org/onap/appc/listener/LCM/model/CommonHeader.java @@ -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() { } |