public interface IReconCompleteCallback
extends java.io.Serializable
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.| Modifier and Type | Method and Description |
|---|---|
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.
|
void onReconComplete(long processId,
java.lang.String processState,
java.lang.String processResult,
java.lang.String resultSummary)
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.