1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kew.api.action;
17
18 import java.util.List;
19
20 import org.joda.time.DateTime;
21 import org.kuali.rice.core.api.mo.common.Identifiable;
22
23 public interface ActionRequestContract extends Identifiable {
24
25 String getId();
26
27 ActionRequestType getActionRequested();
28
29 ActionRequestStatus getStatus();
30
31 boolean isCurrent();
32
33 DateTime getDateCreated();
34
35 String getResponsibilityId();
36
37 String getDocumentId();
38
39 int getPriority();
40
41 int getRouteLevel();
42
43 String getAnnotation();
44
45 RecipientType getRecipientType();
46
47 String getPrincipalId();
48
49 String getGroupId();
50
51 ActionRequestPolicy getRequestPolicy();
52
53 String getResponsibilityDescription();
54
55 boolean isForceAction();
56
57 DelegationType getDelegationType();
58
59 String getRoleName();
60
61 String getQualifiedRoleName();
62
63 String getQualifiedRoleNameLabel();
64
65 String getRouteNodeInstanceId();
66
67 String getNodeName();
68
69 String getRequestLabel();
70
71 String getParentActionRequestId();
72
73 ActionTakenContract getActionTaken();
74
75 List<? extends ActionRequestContract> getChildRequests();
76
77 }