From: Oleg Mitsura Date: Tue, 5 Oct 2021 00:43:47 +0000 (-0400) Subject: CCSDK-3480 Allow empty variables. X-Git-Tag: 1.4.0~1^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F76%2F124676%2F1;p=ccsdk%2Fsli.git CCSDK-3480 Allow empty variables. Issue-ID: CCSDK-3480 Empty variables should be allowed, else they will not be found in MDSAL at a later time. Current RestapiCallNode removes them. Signed-off-by: Oleg Mitsura Change-Id: I22167fa9dbdef37fa70dc42c03799a05d5c38705 --- diff --git a/plugins/restapi-call-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/restapicall/RestapiCallNode.java b/plugins/restapi-call-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/restapicall/RestapiCallNode.java index fdc164463..5756d4e58 100755 --- a/plugins/restapi-call-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/restapicall/RestapiCallNode.java +++ b/plugins/restapi-call-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/restapicall/RestapiCallNode.java @@ -614,7 +614,7 @@ public class RestapiCallNode implements SvcLogicJavaPlugin { String var1 = template.substring(i1 + 2, i2); String value1 = format == Format.XML ? XmlJsonUtil.getXml(mm, var1) : XmlJsonUtil.getJson(mm, var1); - if (value1 == null || value1.trim().length() == 0) { + if (value1 == null) { // delete the whole element (line) int i3 = template.lastIndexOf('\n', i1); if (i3 < 0) {