Package oracle.iam.platform.kernel.spi
Interface FinalizationHandler
- All Superinterfaces:
oracle.iam.platform.kernel.spi.EventHandler
public interface FinalizationHandler
extends oracle.iam.platform.kernel.spi.EventHandler
Finalization
- Finalization is the end stage. Event handler in this stage, is for finalization purposes only, and cannot alter the flow of the process anymore.
- Finalization handlers can be executed in synchronous mode only.
- If an finalization event cannot be executed, or Finalization event handler throws an exception, process is in "Failed" state.
- When a process is in "Failed" state, the failed event handlers registered for the finalization event will be executed. If no failed event handlers are provided, process will remain in failed until handleFailed is called.
<finalization-handler orch-target="oracle.iam.platform.kernel.vo.SampleOrchestrationTarget" class="oracle.iam.platform.kernel.test.SampleFinalizationHandler" entity-type="ANY" operation="OPERATION" name="Finalization2" order="2" />
-
Method Summary
Modifier and TypeMethodDescriptionvoid
finalize
(long processId, long eventId, BulkOrchestration orchestration) Method containing the actual implementation for finalization of current bulk orchestrationvoid
finalize
(long processId, long eventId, Orchestration orchestration) Method containing the actual implementation for finalization of current orchestrationMethods inherited from interface oracle.iam.platform.kernel.spi.EventHandler
initialize
-
Method Details
-
finalize
Method containing the actual implementation for finalization of current orchestration- Parameters:
processId
- , Id of the orchestration processeventId
- , Id of the orchestartion eventorchestration
- , Value object containing information such as orchestartion parameters, operation.
-
finalize
Method containing the actual implementation for finalization of current bulk orchestration- Parameters:
processId
- , Id of the orchestration processeventId
- , Id of the orchestartion eventorchestration
- , Value object containing information such as orchestartion parameters, operation.
-