|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface PostProcessorRemote
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.
Method Summary | |
---|---|
boolean |
afterProcess(AfterProcessEventDTO event)
The document has just completed processing by the Workflow engine. |
boolean |
beforeProcess(BeforeProcessEventDTO event)
The document is about to be processed by the Workflow engine. |
boolean |
doActionTaken(ActionTakenEventDTO event)
KEW is signaling that the document has had an action taken on it by a user |
boolean |
doDeleteRouteHeader(DeleteEventDTO event)
KEW is signaling that the document should be deleted. |
boolean |
doRouteLevelChange(DocumentRouteLevelChangeDTO levelChangeEvent)
The document has changed route level. |
boolean |
doRouteStatusChange(DocumentRouteStatusChangeDTO statusChangeEvent)
The document has changed route status. |
String[] |
getDocumentIdsToLock(DocumentLockingEventDTO event)
Executed prior to document locking in the workflow engine. |
Method Detail |
---|
boolean doRouteStatusChange(DocumentRouteStatusChangeDTO statusChangeEvent) throws RemoteException
statusChangeEvent
- msg
- any error message to be propagated back to users should be set here
RemoteException
DocumentRouteStatusChange
boolean doRouteLevelChange(DocumentRouteLevelChangeDTO levelChangeEvent) throws RemoteException
levelChangeEvent
- msg
- any error message to be propagated back to users should be set here
Exception
- A general Exception will put the document into Exception routing
ResourceUnavailableException
- requeue the document and try the change again
later if this exception is thrown
RemoteException
DocumentRouteLevelChangeDTO
boolean doDeleteRouteHeader(DeleteEventDTO event) throws RemoteException
event
- message
-
Exception
- A general Exception will put the document into Exception routing
ResourceUnavailableException
- requeue the document and try the change again
RemoteException
boolean doActionTaken(ActionTakenEventDTO event) throws RemoteException
event
-
RemoteException
boolean beforeProcess(BeforeProcessEventDTO event) throws Exception
event
- - holder for data from the engine's process
Exception
- A general Exception will put the document into Exception routingboolean afterProcess(AfterProcessEventDTO event) throws Exception
event
- - holder for data from the engine's process including whether the engine was successful or not
Exception
- A general Exception will put the document into Exception routingString[] getDocumentIdsToLock(DocumentLockingEventDTO event) throws Exception
Note that, by default, the id of the document that is being processed by the engine is always locked. So there is no need to return that document id in the array of document ids to lock.
Exception
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |