From 0ae7a7f6b40ff13a21f33e3e573d6b3ebde6bf90 Mon Sep 17 00:00:00 2001 From: Vijay Venkatesh Kumar Date: Fri, 5 Oct 2018 14:14:00 +0200 Subject: Fix mutual authentication Last version from demo. Change-Id: Ib41581bf6f9eb92a03edf8434261d3674b6e3e39 Issue-ID: DCAEGEN2-860 Signed-off-by: elinuxhenrik Signed-off-by: Vijay Venkatesh Kumar --- datafile-commons/pom.xml | 3 +-- .../org/onap/dcaegen2/collectors/datafile/model/CommonFunctions.java | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'datafile-commons') diff --git a/datafile-commons/pom.xml b/datafile-commons/pom.xml index d018ff79..4b812aa2 100644 --- a/datafile-commons/pom.xml +++ b/datafile-commons/pom.xml @@ -70,7 +70,6 @@ org.springframework spring-web - 5.0.5.RELEASE - + diff --git a/datafile-commons/src/main/java/org/onap/dcaegen2/collectors/datafile/model/CommonFunctions.java b/datafile-commons/src/main/java/org/onap/dcaegen2/collectors/datafile/model/CommonFunctions.java index e02476a5..3be7bcf6 100644 --- a/datafile-commons/src/main/java/org/onap/dcaegen2/collectors/datafile/model/CommonFunctions.java +++ b/datafile-commons/src/main/java/org/onap/dcaegen2/collectors/datafile/model/CommonFunctions.java @@ -24,7 +24,7 @@ import com.google.gson.GsonBuilder; public class CommonFunctions { - private static Gson gson = new GsonBuilder().create(); + private static Gson gson = new GsonBuilder().serializeNulls().create(); private CommonFunctions() {} -- cgit 1.2.3-korg