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