1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package cn.autoform.web.service.process;
|
| import java.util.concurrent.TimeoutException;
|
| import cn.autoform.bean.ProcessState;
| import cn.autoform.fw.exception.FormClientException;
|
| public interface ProcessStateService {
|
| int updateState(ProcessState process) throws FormClientException, TimeoutException ;
|
| ProcessState selectState(ProcessState process) throws TimeoutException, FormClientException;
|
| }
|
|