Package com.mossle.bpm.cmd

Examples of com.mossle.bpm.cmd.ListActivityCmd


     * 自由流执行之前,选择跳转到哪个节点.
     */
    @RequestMapping("console-prepareJump")
    public String prepareJump(@RequestParam("executionId") String executionId,
            Model model) {
        Command<Map<String, String>> cmd = new ListActivityCmd(executionId);

        Map activityMap = processEngine.getManagementService().executeCommand(
                cmd);

        model.addAttribute("activityMap", activityMap);
View Full Code Here

TOP

Related Classes of com.mossle.bpm.cmd.ListActivityCmd

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.