From 0566fc507f64578ab37c4bce1abaaad8d5528169 Mon Sep 17 00:00:00 2001 From: liboNet Date: Sat, 25 May 2019 07:57:55 +0800 Subject: [PATCH] Fix data incomplete and not json format the user needs to know the resource information and need to get the json format Change-Id: Id17be27016082bd7c42f8aa6f7a8aa25017e2c8b Issue-ID: MULTICLOUD-651 Signed-off-by: liboNet --- .../distribution/reception/handling/sdc/SdcReceptionHandler.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/artifactbroker/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/SdcReceptionHandler.java b/artifactbroker/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/SdcReceptionHandler.java index 48ee0ea..a2c8b05 100644 --- a/artifactbroker/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/SdcReceptionHandler.java +++ b/artifactbroker/plugins/reception-plugins/src/main/java/org/onap/policy/distribution/reception/handling/sdc/SdcReceptionHandler.java @@ -274,7 +274,9 @@ public class SdcReceptionHandler extends AbstractReceptionHandler implements INo //store the service level info to serivce-meta.json filePath = Paths.get("/data",vfModule.getVfModuleModelCustomizationUUID(), "service-meta.json").toString(); - writeFileByFileWriter(filePath, notificationData.toString()); + try(FileWriter writer = new FileWriter(filePath)){ + new Gson().toJson(resource, writer); + } LOGGER.debug("pass to create directory artifact file"); } catch (final IOException exp) { LOGGER.error("Failed to create directory artifact file", exp); -- 2.16.6