Coverage Report - org.kuali.rice.kew.api.action.ActionRequestContract
 
Classes in this File Line Coverage Branch Coverage Complexity
ActionRequestContract
N/A
N/A
1
 
 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  
         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  
 }