1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package mocks;
18
19 import java.util.List;
20
21 import org.kuali.rice.kew.engine.RouteContext;
22 import org.kuali.rice.kew.exception.ResourceUnavailableException;
23 import org.kuali.rice.kew.exception.WorkflowException;
24 import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue;
25 import org.kuali.rice.kew.routemodule.RouteModule;
26 import org.kuali.rice.kew.util.ResponsibleParty;
27
28
29 public class MockRouteModule implements RouteModule {
30
31 List nonPrimaryDelegationResponsibleParties;
32
33 public List findActionRequests(RouteContext context) throws ResourceUnavailableException, WorkflowException {
34 return null;
35 }
36
37 public List findActionRequests(DocumentRouteHeaderValue routeHeader) throws ResourceUnavailableException, WorkflowException {
38 return null;
39 }
40
41 public ResponsibleParty resolveResponsibilityId(Long rId) throws ResourceUnavailableException, WorkflowException {
42 return null;
43 }
44
45 }