1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kew.api.document.node;
17
18 import java.util.List;
19
20 import org.kuali.rice.core.api.mo.common.Identifiable;
21
22 public interface RouteNodeInstanceContract extends Identifiable {
23
24 String getDocumentId();
25
26 String getBranchId();
27
28 String getRouteNodeId();
29
30 String getProcessId();
31
32 String getName();
33
34 boolean isActive();
35
36 boolean isComplete();
37
38 boolean isInitial();
39
40 List<? extends RouteNodeInstanceStateContract> getState();
41
42 List<? extends RouteNodeInstanceContract> getNextNodeInstances();
43
44 }