Package com.founder.fix.fixflow.service

Examples of com.founder.fix.fixflow.service.FlowCenterService.completeTask()


          ps.setObject(1, filter.get("businessKey"));
          ps.setObject(2, filter.get("COL2"));
          ps.execute();
          FlowCenterService fcs = getFlowCenter();
          fcs.setConnection(connection);
          fcs.completeTask(filter);

          //事务提交
          connection.commit();
        } catch(Exception e){
          //事务回滚
View Full Code Here


          Map<String, Object> flowMaps = JSONUtil
              .parseJSON2Map(taskParams);
          filter.put("taskParams", flowMaps);
          FlowCenterService fcs = getFlowCenter();
          fcs.setConnection(connection);
          fcs.completeTask(filter);
          //事务提交
          connection.commit();
        }catch(Exception e){
          connection.rollback();
          throw e;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.