View Javadoc

1   /*
2    * Copyright 2005-2007 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.postprocessor;
18  
19  import java.util.List;
20  
21  
22  
23  /**
24   * A simple default implementation of the PostProcessor which can be used
25   * as a superclass for post processor which don't want to implement all
26   * the methods on the interface.  Simply returns a "true"
27   * ProcessDocReport for all events exception for deletion.
28   * 
29   * @author Kuali Rice Team (rice.collab@kuali.org)
30   */
31  public class DefaultPostProcessor implements PostProcessor {
32  
33      public ProcessDocReport doRouteStatusChange(DocumentRouteStatusChange statusChangeEvent) throws Exception {
34          return new ProcessDocReport(true, "");
35      }
36  
37      public ProcessDocReport doRouteLevelChange(DocumentRouteLevelChange levelChangeEvent) throws Exception {
38          return new ProcessDocReport(true, "");
39      }
40  
41      public ProcessDocReport doDeleteRouteHeader(DeleteEvent event) throws Exception {
42          return new ProcessDocReport(false, "");
43      }
44  
45      public ProcessDocReport doActionTaken(ActionTakenEvent event) throws Exception {
46          return new ProcessDocReport(true, "");
47      }
48  
49      public ProcessDocReport beforeProcess(BeforeProcessEvent event) throws Exception {
50          return new ProcessDocReport(true, "");
51      }
52  
53      public ProcessDocReport afterProcess(AfterProcessEvent event) throws Exception {
54          return new ProcessDocReport(true, "");
55      }
56  
57  	public List<String> getDocumentIdsToLock(DocumentLockingEvent lockingEvent)
58  			throws Exception {
59  		return null;
60  	}
61      
62      
63  
64  }