Пример #1
0
 /**
  * Set the results of message execution
  *
  * @param resultMap map of result property and value pairs
  */
 public void setResultMap(Map<String, String> resultMap) {
   _record.setMapField(Attributes.MESSAGE_RESULT.toString(), resultMap);
 }
Пример #2
0
 /**
  * Get the results of message execution
  *
  * @return map of result property and value pairs
  */
 public Map<String, String> getResultMap() {
   return _record.getMapField(Attributes.MESSAGE_RESULT.toString());
 }