| 1 | |
package org.kuali.rice.kew.postprocessor; |
| 2 | |
|
| 3 | |
import java.rmi.RemoteException; |
| 4 | |
|
| 5 | |
import org.kuali.rice.kew.dto.ActionTakenEventDTO; |
| 6 | |
import org.kuali.rice.kew.dto.AfterProcessEventDTO; |
| 7 | |
import org.kuali.rice.kew.dto.BeforeProcessEventDTO; |
| 8 | |
import org.kuali.rice.kew.dto.DeleteEventDTO; |
| 9 | |
import org.kuali.rice.kew.dto.DocumentLockingEventDTO; |
| 10 | |
import org.kuali.rice.kew.dto.DocumentRouteLevelChangeDTO; |
| 11 | |
import org.kuali.rice.kew.dto.DocumentRouteStatusChangeDTO; |
| 12 | |
|
| 13 | 0 | public class DefaultPostProcessorRemote implements PostProcessorRemote { |
| 14 | |
|
| 15 | |
@Override |
| 16 | |
public boolean doRouteStatusChange( |
| 17 | |
DocumentRouteStatusChangeDTO statusChangeEvent) |
| 18 | |
throws RemoteException { |
| 19 | 0 | return true; |
| 20 | |
} |
| 21 | |
|
| 22 | |
@Override |
| 23 | |
public boolean doRouteLevelChange( |
| 24 | |
DocumentRouteLevelChangeDTO levelChangeEvent) |
| 25 | |
throws RemoteException { |
| 26 | 0 | return true; |
| 27 | |
} |
| 28 | |
|
| 29 | |
@Override |
| 30 | |
public boolean doDeleteRouteHeader(DeleteEventDTO event) |
| 31 | |
throws RemoteException { |
| 32 | 0 | return false; |
| 33 | |
} |
| 34 | |
|
| 35 | |
@Override |
| 36 | |
public boolean doActionTaken(ActionTakenEventDTO event) |
| 37 | |
throws RemoteException { |
| 38 | 0 | return true; |
| 39 | |
} |
| 40 | |
|
| 41 | |
@Override |
| 42 | |
public boolean beforeProcess(BeforeProcessEventDTO event) throws Exception { |
| 43 | 0 | return true; |
| 44 | |
} |
| 45 | |
|
| 46 | |
@Override |
| 47 | |
public boolean afterProcess(AfterProcessEventDTO event) throws Exception { |
| 48 | 0 | return true; |
| 49 | |
} |
| 50 | |
|
| 51 | |
@Override |
| 52 | |
public Long[] getDocumentIdsToLock(DocumentLockingEventDTO event) |
| 53 | |
throws Exception { |
| 54 | 0 | return null; |
| 55 | |
} |
| 56 | |
|
| 57 | |
} |