diff options
author | Lukasz Rajewski <lukasz.rajewski@t-mobile.pl> | 2024-01-10 13:13:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-01-10 13:13:39 +0000 |
commit | 09fd390a6f265419edcc8d1225a43b9a85dcd76a (patch) | |
tree | cd616ffcaa5ec79a19b057faff6858acde3fe8e9 /aai-core/src | |
parent | 60eea4e2fdf10204147a22e78a165ed087fddbef (diff) | |
parent | dc7a552c80013fdf7701705890c70674271fd7da (diff) |
Merge "Update spring boot to 2.2"
Diffstat (limited to 'aai-core/src')
-rw-r--r-- | aai-core/src/main/java/org/onap/aai/serialization/queryformats/StateFormat.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aai-core/src/main/java/org/onap/aai/serialization/queryformats/StateFormat.java b/aai-core/src/main/java/org/onap/aai/serialization/queryformats/StateFormat.java index 24405953..b010b19b 100644 --- a/aai-core/src/main/java/org/onap/aai/serialization/queryformats/StateFormat.java +++ b/aai-core/src/main/java/org/onap/aai/serialization/queryformats/StateFormat.java @@ -104,7 +104,7 @@ public class StateFormat extends HistoryFormat { json.addProperty("uri", "NA"); } json.addProperty(TIMESTAMP, - e.property(AAIProperties.START_TS).isPresent() ? e.value(AAIProperties.START_TS) : 0); + e.property(AAIProperties.START_TS).isPresent() ? (String) e.value(AAIProperties.START_TS) : String.valueOf(0)); json.addProperty(SOT, e.property(AAIProperties.SOURCE_OF_TRUTH).isPresent() ? e.value(AAIProperties.SOURCE_OF_TRUTH) : ""); json.addProperty(TX_ID, |