View Javadoc

1   /*
2    * Copyright 2005-2008 The Kuali Foundation
3    *
4    *
5    * Licensed under the Educational Community License, Version 2.0 (the "License");
6    * you may not use this file except in compliance with the License.
7    * You may obtain a copy of the License at
8    *
9    * http://www.opensource.org/licenses/ecl2.php
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.kuali.rice.kew.actiontaken.service;
18  
19  import org.kuali.rice.kew.actionrequest.ActionRequestValue;
20  import org.kuali.rice.kew.actiontaken.ActionTakenValue;
21  
22  import java.sql.Timestamp;
23  import java.util.Collection;
24  import java.util.List;
25  
26  
27  /**
28   * Responsible for the data access for {@link ActionTakenValue} objects.
29   *
30   * @author Kuali Rice Team (rice.collab@kuali.org)
31   */
32  public interface ActionTakenService {
33  
34      public ActionTakenValue load(String id);
35  
36      public ActionTakenValue findByActionTakenId(String actionTakenId);
37  
38      public Collection getActionsTaken(String documentId);
39  
40      public void saveActionTaken(ActionTakenValue actionTaken);
41  
42      public ActionTakenValue getPreviousAction(ActionRequestValue actionRequest);
43  
44      public ActionTakenValue getPreviousAction(ActionRequestValue actionRequest, List<ActionTakenValue> simulatedActionsTaken);
45  
46      public Collection<ActionTakenValue> findByDocumentId(String documentId);
47  
48      public Collection findByDocIdAndAction(String docId, String action);
49  
50      public List<ActionTakenValue> findByDocumentIdWorkflowId(String documentId, String workflowId);
51  
52      public void delete(ActionTakenValue actionTaken);
53  
54      public List findByDocumentIdIgnoreCurrentInd(String documentId);
55  
56      public void deleteByDocumentId(String documentId);
57  
58      public void validateActionTaken(ActionTakenValue actionTaken);
59  
60      public boolean hasUserTakenAction(String principalId, String documentId);
61  
62      public Timestamp getLastApprovedDate(String documentId);
63  }