Package oracle.iam.platform.kernel.spi
Interface PostProcessHandler
- All Superinterfaces:
oracle.iam.platform.kernel.spi.Cancellable
,oracle.iam.platform.kernel.spi.Compensable
,oracle.iam.platform.kernel.spi.EventHandler
public interface PostProcessHandler
extends oracle.iam.platform.kernel.spi.EventHandler, oracle.iam.platform.kernel.spi.Compensable, oracle.iam.platform.kernel.spi.Cancellable
Post Process
- Post-process event handlers can be both synchronous and asynchronous.
- Post process always executes asynchronously. However indicating the event handler as sync, means orchestration engine will wait for the event handler to finish and goes to the next based on the result.
- If a post-process event cannot be executed, or post-process event handler throws an exception, process is in "Failed" state.
- If the event handler is executed in synchronous mode, it must return an event result, if the event handler is executed in asynchronous mode, it must return null. If the event handler returns in other combination, we move the process to "Failed" state.
- When a process is in "Failed" state, the failed event handlers registered for the post-process event will be executed. If no failed event handlers are provided, process will remain in failed until handleFailed is called.
- Post-process event handler can return an Event Result that can perform the following:
- Return a List of "immediate" Orchestrations to be performed before proceeding to the next event handler.
- Return a List of "deferred" Orchestrations to be performed if the entire change goes through normally.
- Return an event result that instructs none of this. (Indicates nothing to be done by the orchestration engine.)
- If there are no post-process events to be performed, orchestration engine will execute the "deferred" orchestration changes.
- Process can be moved to "Cancelled Stage" by calling cancel.
- Event Handlers will be notified by calling cancel, if the process is cancelled, and the event handler is currently in execution.
- Event handlers can implement compensate, to compensate for changes if the orchestration didn't go through.
<action-handler class="oracle.iam.platform.kernel.test.SamplePostProcessHandler" entity-type="User" operation="CREATE" name="PostProcess1" order="FIRST" stage="postprocess" sync="TRUE">
-
Method Summary
Modifier and TypeMethodDescriptionboolean
cancel
(long processId, long eventId, AbstractGenericOrchestration orchestration) 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 this post process event handler for bulk orchestrationexecute
(long processId, long eventId, Orchestration orchestration) Method containing the actual implementation of this post process event handlerMethods inherited from interface oracle.iam.platform.kernel.spi.Compensable
compensate
Methods inherited from interface oracle.iam.platform.kernel.spi.EventHandler
initialize
-
Method Details
-
execute
Method containing the actual implementation of this post process event handler- Parameters:
processId
- , Id of the orchestration processeventId
- , Id of the orchestartion eventorchestration
- , Value object containing information such as orchestartion parameters, operation.- Returns:
- Outcome of the event handler. If the event handler is defined to execute in a synchronous mode, it must return a result. If it is defined execute in asynchronous mode, it must return null.
-
execute
Method containing the actual implementation of this post process event handler for bulk orchestration- Parameters:
processId
- , Id of the orchestration processeventId
- , Id of the orchestartion eventorchestration
- , Value object containing information such as orchestartion parameters, operation.- Returns:
- Outcome of the event handler. If the event handler is defined to execute in a synchronous mode, it must return a result. If it is defined execute in asynchronous mode, it must return null.
-
cancel
Method containing the logic that need to be executed if the orchestration is cancelled. This would be called only for asynchronous actions.- Specified by:
cancel
in interfaceoracle.iam.platform.kernel.spi.Cancellable
- Parameters:
processId
- , Id of the orchestration processeventId
- , Id of the orchestartion eventorchestration
- , Value object containing information such as orchestartion parameters, operation.
-