Package oracle.iam.platform.kernel.spi
Interface FailedHandler
- All Superinterfaces:
oracle.iam.platform.kernel.spi.EventHandler
public interface FailedHandler
extends oracle.iam.platform.kernel.spi.EventHandler
- Failed handlers specify how failures should be handled for a particular stage, event or child process.
- Failed handlers can be both synchronous and asynchronous.
- All stages but Preview and Validation can define their failed handlers.
- Child process can define its failed handlers to tell orchestration engine how to proceed when error occurred in Preview or Validation stage.
- To register a failed handler for all child process type, specify the "stage" attribute to "change".
- To register a failed handler for one kind of child process type, specify the "event" attribute to the child process type [i.e. event=immediate, deferred or restart].
- Failed handler can return a response from an enumeration (MANUAL_COMPLETE, RETRY, or COMPENSATE).
- If the failed handler returns COMPENSATE, then process is moved to "Compensate Stage". But if the handler that failed in execution is a compensate event handler, process remains in failed state until the handleFailed method is called.
- If the failed handler returns RETRY, process will re-execute the event with failed status. If that event has already exceeded the maximum retry count, process remains in failed state until the handleFailed method is called.
- If the failed handler returns MANUAL_COMPLETE, process will resume its execution with the next event handler. If all event handlers for the stage are performed, we automatically move the process to the next stage.
- A failed handler may return 'NULL' to indicate, it doesn't know how to deal with the error, in which case the next failed handler in the list is executed.
- If the failed handler is working asynchronously, the execution can be cancelled by calling cancelPendingFailedEvent, and the next failed event handler in the list will be executed.
- Failed handlers will be notified by calling cancel, if the handler is cancelled, and the failed handler is currently in execution.
- Once the process moves to a different stage, rest of the failed handlers are not executed.
- If no failed handler can handle the error (Because there are no handlers defined, or all executed handlers return NULL for the response), process will remain in failed state until the handleFailed method is called.
- If the failed handler cannot be executed or throws any Runtime exceptions, it will be logged, and process will proceed to execute the next failed handler.
<failed-handler orch-target="oracle.iam.platform.kernel.vo.ToplinkOrchestration" class="oracle.iam.platform.kernel.test.SampleFailedRetryHandler" entity-type="Person" operation="WALK" name="testFailed" order="1" event="PostProcess" sync="TRUE" />
-
Method Summary
Modifier and TypeMethodDescriptionboolean
cancel
(long processId, long eventId) Method containing the logic that need to be executed if the orchestration is cancelled.execute
(long processId, long eventId, BulkOrchestration orchestration) Method containing the actual implementation of the event handler that gets executed when process is failed in any stageexecute
(long processId, long eventId, Orchestration orchestration) Method containing the actual implementation of the event handler that gets executed when process is failed in any stageMethods inherited from interface oracle.iam.platform.kernel.spi.EventHandler
initialize
-
Method Details
-
execute
Method containing the actual implementation of the event handler that gets executed when process is failed in any stage- Parameters:
processId
- , Id of the orchestration processeventId
- , Id of the orchestartion eventorchestration
- , Value object containing information such as orchestartion parameters, operation.- Returns:
- A response from an enumeration (COMPENSATE, RETRY, or MANUAL_COMPLETE) indicating whether process should be moved to Compensate Stage or it should be retried or it should move onto next event handler
-
execute
Method containing the actual implementation of the event handler that gets executed when process is failed in any stage- Parameters:
processId
- , Id of the orchestration processeventId
- , Id of the orchestartion eventorchestration
- , Value object containing information such as orchestartion parameters, operation.- Returns:
- A response from an enumeration (COMPENSATE, RETRY, or MANUAL_COMPLETE) indicating whether process should be moved to Compensate Stage or it should be retried or it should move onto next event handler
-
cancel
boolean cancel(long processId, long eventId) Method containing the logic that need to be executed if the orchestration is cancelled. This would be called only for asynchronous actions.- Parameters:
processId
- , Id of the orchestration processeventId
- , Id of the orchestartion event
-