/** * 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); }
/** * 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()); }