Package me.kafeitu.demo.activiti.cmd

Examples of me.kafeitu.demo.activiti.cmd.JumpActivityCmd


    @RequestMapping(value = "activity/jump")
    @ResponseBody
    public boolean jump(@RequestParam("executionId") String executionId,
                        @RequestParam("activityId") String activityId) {
        Command<Object> cmd = new JumpActivityCmd(executionId, activityId);
        managementService.executeCommand(cmd);
        return true;
    }
View Full Code Here

TOP

Related Classes of me.kafeitu.demo.activiti.cmd.JumpActivityCmd

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.