fillTaskParameter

This method is used to get the parameters for the component which will be used to execute the component in Operations module.

The Input Parameters are:
  • String username
  • String locale
  • String Infodom
  • String uniqueName
  • String subtype
  • Map<String, String> allParams
Return is:
  • Map<String, String>

It takes uniqueName which is nothing but the <code> of the definition. It also takes subType of the definition and an allParams which is of data type Map<String, String>. This map contains all the probable parameters with it, where key is the parameter name and value is the parameter value. This map contains following params:

  • Dollar variables ($RUNID, $RUNSK, $EXEID, $RUNEXECID, $MODE)
  • All reference name and value
  • Optional parameter if any

By using the map another LinkedHashMap will be created in this method with all the parameters needed to run the component in Operations module. Al the parameter in this map has to be put in correct order. This LinkedHashMap will be returned back to the calling method.