Package com.mossle.bpm.cmd

Examples of com.mossle.bpm.cmd.DelegateTaskCmd


     * 转办.
     */
    @RequestMapping("workspace-doDelegate")
    public String doDelegate(@RequestParam("taskId") String taskId,
            @RequestParam("attorney") String attorney) {
        DelegateTaskCmd cmd = new DelegateTaskCmd(taskId, attorney);
        processEngine.getManagementService().executeCommand(cmd);

        return "redirect:/bpm/workspace-listPersonalTasks.do";
    }
View Full Code Here


        if (delegateInfo == null) {
            return;
        }

        String attorney = delegateInfo.getAttorney();
        new DelegateTaskCmd(delegateTask.getId(), attorney).execute(Context
                .getCommandContext());
    }
View Full Code Here

TOP

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

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.