View Javadoc

1   /*
2    * Copyright 2011 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl1.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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  }