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 | |
String getAnnotation(); |
42 | |
|
43 | |
RecipientType getRecipientType(); |
44 | |
|
45 | |
String getPrincipalId(); |
46 | |
|
47 | |
String getGroupId(); |
48 | |
|
49 | |
ActionRequestPolicy getRequestPolicy(); |
50 | |
|
51 | |
String getResponsibilityDescription(); |
52 | |
|
53 | |
boolean isForceAction(); |
54 | |
|
55 | |
DelegationType getDelegationType(); |
56 | |
|
57 | |
String getRoleName(); |
58 | |
|
59 | |
String getQualifiedRoleName(); |
60 | |
|
61 | |
String getQualifiedRoleNameLabel(); |
62 | |
|
63 | |
String getRouteNodeInstanceId(); |
64 | |
|
65 | |
String getNodeName(); |
66 | |
|
67 | |
String getRequestLabel(); |
68 | |
|
69 | |
String getParentActionRequestId(); |
70 | |
|
71 | |
ActionTakenContract getActionTaken(); |
72 | |
|
73 | |
List<? extends ActionRequestContract> getChildRequests(); |
74 | |
|
75 | |
} |