Skip to content

qie.newParameterMap

Signature: qie.newParameterMap()

Returns: Map<String, String> parameterMap - a new empty Java Map<String,String> instance

Returns a new parameterMap instance to be used when calling qie.callWebService(), qie.findPreviousMessage(), or qie.evaluateTemplate()

Note

To set a new value in the map, you will use the '.put(String, String)' method. The first parameter is the 'Key', and the second parameter is the 'Value'.

Note

To get a value from the map, you will use the '.get(String)' method. The parameter is the 'Key' and the 'Value' will be returned.

Parameters

None

Example

var parameterMap = qie.newParameterMap();
parameterMap.put("theKey", "theValue");
parameterMap.put("filename", "importantDocument.pdf");
parameterMap.put("keystone", new java.lang.Object());