The properties of a bounded task flow
Let us begin now with the generic properties on bounded task flows and then later focus on more advanced features offered by the task flow to handle specific use case scenarios.
The ADF framework offers many configuration parameters for a bounded task flow. You can override the default values using the property inspector in the JDeveloper IDE as shown in the following screenshot:
The following are the configurable properties that you may see in a bounded task flow:
Initializer: This is a managed bean method that is invoked when a task flow starts execution. The value is specified using an EL expression.
Finalizer: This is a managed bean method that is invoked when a task flow exits. The value is specified using an EL expression.
Save Point Restore Finalizer: This is a managed bean method that is invoked when a task flow restores a save point. This is used for adding any custom method which is required to run after the execution of the framework code...