TemplateNode update 89/75289/2
authorSmokowski, Kevin (ks6305) <kevin.smokowski@att.com>
Fri, 4 Jan 2019 15:03:29 +0000 (15:03 +0000)
committerKevin Smokowski <kevin.smokowski@att.com>
Fri, 4 Jan 2019 18:20:01 +0000 (18:20 +0000)
push parameter values into velocity context to simplify how parameters are used in templates

Change-Id: Ic8b4c56ef303ed9447bb1a62300c04c4accb2d6a
Issue-ID: CCSDK-911
Signed-off-by: Smokowski, Kevin (ks6305) <kevin.smokowski@att.com>
template-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/template/TemplateNode.java

index 0b5850a..7310b3f 100644 (file)
@@ -25,6 +25,7 @@ package org.onap.ccsdk.sli.plugins.template;
 import java.io.FileInputStream;
 import java.io.StringWriter;
 import java.util.Map;
+import java.util.Map.Entry;
 import java.util.Properties;
 import org.apache.velocity.Template;
 import org.apache.velocity.VelocityContext;
@@ -97,6 +98,10 @@ public class TemplateNode implements SvcLogicJavaPlugin {
                 VelocityContext context = new VelocityContext();
                 context.put("ctx", ctx);
                 context.put("params", params);
+                //Adding these values directly to context makes working with the values cleaner
+                for (Entry<String, String> entry : params.entrySet()) {
+                    context.put(entry.getKey(), entry.getValue());
+                }
                 StringWriter sw = new StringWriter();
                 template.merge(context, sw);
                 ctx.setAttribute(outputPath, sw.toString());
@@ -106,4 +111,4 @@ public class TemplateNode implements SvcLogicJavaPlugin {
         }
     }
 
-}
\ No newline at end of file
+}