* 自由流.
*/
@RequestMapping("console-jump")
public String jump(@RequestParam("executionId") String executionId,
@RequestParam("activityId") String activityId) {
Command<Object> cmd = new JumpCmd(executionId, activityId);
processEngine.getManagementService().executeCommand(cmd);
return "redirect:/bpm/console-listTasks.do";
}