| |
|
| edu.iu.uis.eden.clientapp.PostProcessorRemote
All known Subclasses: org.kuali.workflow.postprocessor.KualiPostProcessor,
PostProcessorRemote | public interface PostProcessorRemote (Code) | | A PostProcessor listens for events from the Workflow routing engine for it's DocumentType.
It gives clients hooks into the routing process to perform operations at the various stages.
Implementations of this Interface are potentially remotable, so this Interface uses
value objects.
author: ewestfal |
doDeleteRouteHeader | public boolean doDeleteRouteHeader(DeleteEventVO event) throws RemoteException(Code) | | KEW is signaling that the document should be deleted. The application can reject this by
returning false. If the EdenException is thrown the docuemnt will go to exception routing. If
a ResourceUnavailableException is thrown, the doc will be requeued and will try again later to
delete the document.
Parameters: event - Parameters: message - throws: java.lang.Exception - A general Exception will cause EDEN to put the document into Exception routing throws: ResourceUnavailableException - EDEN will requeue the document and try the change again |
doRouteLevelChange | public boolean doRouteLevelChange(DocumentRouteLevelChangeVO levelChangeEvent) throws RemoteException(Code) | | The document has changed route level. The docEvent contains the information about the change.
This method should do what ever is appropriate for various route level changes to a document.
The method should return true if the change is correct and all application actions as a result
of the change are successful. It should return false if the application considers this an
incorrect change.
The method can throw a ResourceUnavailableException in order to get EDEN to requeue the
document and try again later.
Parameters: levelChangeEvent - Parameters: msg - any error message to be propagated back to users should be set here true if the status change is correct and application actions are successful throws: java.lang.Exception - A general Exception will cause EDEN to put the document into Exception routing throws: ResourceUnavailableException - EDEN will requeue the document and try the change againlater if this exception is thrown See Also: DocumentRouteLevelChangeVO |
doRouteStatusChange | public boolean doRouteStatusChange(DocumentRouteStatusChangeVO statusChangeEvent) throws RemoteException(Code) | | The document has changed route status. The docEvent contains the information about the change.
This method should do what ever is appropriate for various route status changes to a document.
The method should return true if the change is correct and all application actions as a result
of the change are successful. It should return false if the application considers this an
incorrect change.
The method can throw a ResourceUnavailableException in order to get EDEN to requeue the
document and try again later.
Parameters: statusChangeEvent - Parameters: msg - any error message to be propagated back to users should be set here true if the status change is correct and application actions are successfullater if this exception is thrown See Also: DocumentRouteStatusChange |
|
|
|