|  1 |     | 
     | 
  |  2 |     | 
     | 
  |  3 |     | 
     | 
  |  4 |     | 
     | 
  |  5 |     | 
     | 
  |  6 |     | 
     | 
  |  7 |     | 
     | 
  |  8 |     | 
     | 
  |  9 |     | 
     | 
  |  10 |     | 
     | 
  |  11 |     | 
     | 
  |  12 |     | 
     | 
  |  13 |     | 
     | 
  |  14 |     | 
     | 
  |  15 |     | 
     | 
  |  16 |     | 
     | 
  |  17 |     | 
   package org.kuali.rice.kew.postprocessor;  | 
  |  18 |     | 
     | 
  |  19 |     | 
   import java.util.List;  | 
  |  20 |     | 
     | 
  |  21 |     | 
     | 
  |  22 |     | 
     | 
  |  23 |     | 
     | 
  |  24 |     | 
     | 
  |  25 |     | 
     | 
  |  26 |     | 
     | 
  |  27 |     | 
     | 
  |  28 |     | 
     | 
  |  29 |     | 
     | 
  |  30 |     | 
     | 
  |  31 |    0 |    public class DefaultPostProcessor implements PostProcessor { | 
  |  32 |     | 
     | 
  |  33 |     | 
       public ProcessDocReport doRouteStatusChange(DocumentRouteStatusChange statusChangeEvent) throws Exception { | 
  |  34 |    0 |            return new ProcessDocReport(true, "");  | 
  |  35 |     | 
       }  | 
  |  36 |     | 
     | 
  |  37 |     | 
       public ProcessDocReport doRouteLevelChange(DocumentRouteLevelChange levelChangeEvent) throws Exception { | 
  |  38 |    0 |            return new ProcessDocReport(true, "");  | 
  |  39 |     | 
       }  | 
  |  40 |     | 
     | 
  |  41 |     | 
       public ProcessDocReport doDeleteRouteHeader(DeleteEvent event) throws Exception { | 
  |  42 |    0 |            return new ProcessDocReport(false, "");  | 
  |  43 |     | 
       }  | 
  |  44 |     | 
     | 
  |  45 |     | 
       public ProcessDocReport doActionTaken(ActionTakenEvent event) throws Exception { | 
  |  46 |    0 |            return new ProcessDocReport(true, "");  | 
  |  47 |     | 
       }  | 
  |  48 |     | 
     | 
  |  49 |     | 
       public ProcessDocReport beforeProcess(BeforeProcessEvent event) throws Exception { | 
  |  50 |    0 |            return new ProcessDocReport(true, "");  | 
  |  51 |     | 
       }  | 
  |  52 |     | 
     | 
  |  53 |     | 
       public ProcessDocReport afterProcess(AfterProcessEvent event) throws Exception { | 
  |  54 |    0 |            return new ProcessDocReport(true, "");  | 
  |  55 |     | 
       }  | 
  |  56 |     | 
     | 
  |  57 |     | 
           public List<Long> getDocumentIdsToLock(DocumentLockingEvent lockingEvent)  | 
  |  58 |     | 
                           throws Exception { | 
  |  59 |    0 |                    return null;  | 
  |  60 |     | 
           }  | 
  |  61 |     | 
         | 
  |  62 |     | 
         | 
  |  63 |     | 
     | 
  |  64 |     | 
   }  |