コード例 #1
0
ファイル: JbpmAction.java プロジェクト: mingcheong/OA
 /**
  * 删除流程
  *
  * @return
  * @throws Exception
  */
 public String remove() throws Exception {
   if (getKey() != null) {
     flowService.delete(getKey().toString());
   }
   return RELOADVIEW;
 }
コード例 #2
0
ファイル: JbpmAction.java プロジェクト: mingcheong/OA
 /**
  * 查询流程列表
  *
  * @return
  */
 public String list() {
   pdList = flowService.pdList();
   return LISTVIEW;
 }
コード例 #3
0
ファイル: JbpmAction.java プロジェクト: mingcheong/OA
 /**
  * 发布流程
  *
  * @return
  * @throws Exception
  */
 public String deploy() throws Exception {
   flowService.deploy(xml);
   return RELOADVIEW;
 }