1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
| package cn.autoform.web.service.process;
|
| import cn.autoform.fw.exception.FormClientException;
|
| import java.util.concurrent.TimeoutException;
|
| /**
| * 执行流程拦截器
| * @author wangyuxin
| *
| */
| public interface ProcessFilter {
|
| /**
| * 流程执行前
| * @param formId
| * @param dataRowNum
| * @param tenantId
| */
| void executeBefor(String formId, Integer dataRowNum, String tenantId) throws FormClientException, TimeoutException;
|
| /**
| * 流程执行后
| * @param formId
| * @param dataRowNum
| * @param tenantId
| */
| void executeAfter(String formId, Integer dataRowNum, String tenantId) throws FormClientException, TimeoutException;
|
| /**
| * 流程执行完成
| * @param formId
| * @param dataRowNum
| * @param tenantId
| */
| void executeOver(String formId, Integer dataRowNum, String tenantId) throws FormClientException, TimeoutException;
|
| void executeRollBack(String formId, Integer dataRowNum, String tenantId) throws FormClientException, TimeoutException;
|
| void executeCreate(String formId, Integer dataRowNum, String tenantId) throws FormClientException, TimeoutException;
| }
|
|