This interface allows the implementation class the ability to gain
control after a reconciliation process has finished.
The 'onReconComplete' method of this interface is invoked, by the
workflow engine, after the completion of reconciliation process.
This interface may be implemented and an object of the implementation
class can be passed as a parameter to functions of
ReconManager, used to add a new
reconciliation unit or to run reconciliation immediately, for a given
resource.
This way the callback object gets registered with the reconciliation
process, and gains control, after process completes.
This interface can be used to notify end users, the completion of
reconciliation or perform some clean up activities at the end of
reconciliation process.
Method Summary
void
onReconComplete(long processId,
java.lang.String processState,
java.lang.String processResult,
java.lang.String resultSummary)
This method is executed by ITIM workflow engine after the
reconciliation process, with which the callback object of
the implementation class of this interface is registered,
completes.
Method Detail
onReconComplete
public void onReconComplete(long processId,
java.lang.String processState,
java.lang.String processResult,
java.lang.String resultSummary)
This method is executed by ITIM workflow engine after the
reconciliation process, with which the callback object of
the implementation class of this interface is registered,
completes.
Parameters:
processId - Id of the reconciliation process the callback
was registered with.
processState - State of the reconciliation process.
processResult - Result of the reconciliation process.
resultSummary - Result summary of the reconciliation process.