public ProcessInstance submitStartForm(String processDefinitionId, String businessKey, Map<String, Object> properties) {
return commandExecutor.execute(new SubmitStartFormCmd(processDefinitionId, businessKey, properties));
}
public void submitTaskFormData(String taskId, Map<String, String> properties) {
commandExecutor.execute(new SubmitTaskFormCmd(taskId, (Map)properties));
}