execution.setTestCaseVersionId(getInteger(map,
TestLinkResponseParams.TEST_CASE_VERSION_ID.toString()));
execution.setTestCaseVersionNumber(getInteger(map,
TestLinkResponseParams.TEST_CASE_VERSION_NUMBER.toString()));
Integer executionTypeText = getInteger(map, TestLinkResponseParams.EXECUTION_TYPE.toString());
ExecutionType executionType = ExecutionType.getExecutionType(executionTypeText);
execution.setExecutionType(executionType);
execution.setNotes(getString(map, TestLinkResponseParams.NOTES.toString()));
String timestamp = getString(map, TestLinkResponseParams.EXECUTION_TS.toString());
if (StringUtils.isNotBlank(timestamp)) {
DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");