/** * 删除流程 * * @return * @throws Exception */ public String remove() throws Exception { if (getKey() != null) { flowService.delete(getKey().toString()); } return RELOADVIEW; }
/** * 查询流程列表 * * @return */ public String list() { pdList = flowService.pdList(); return LISTVIEW; }
/** * 发布流程 * * @return * @throws Exception */ public String deploy() throws Exception { flowService.deploy(xml); return RELOADVIEW; }