Implementing routers
Router activities are used to declaratively route control to activities, based on logic specified in an EL expression. They are used to branch to multiple control flows leading from it, to different activities.
Each router case contains the elements Expression and Outcome. They are used to choose the activity to which control is next routed:
Expression: This is an EL expression evaluating to either true or false. The first expression that evaluates to true is used to determine the corresponding outcome.
Outcome: This is a value returned by the router activity if the EL expression evaluates to true.
How to do it...
In this section, you will cover how to implement declarative route control, as follows:
1. In JDeveloper, go to EnterQuoteDetailsUI project | Web Content | Page Flows and click on EnterQuoteDetails_TaskFlow.xml.
2. Go to Component Palette | ADF Task Flow | Components and drag-and-drop the activity Router on the designer. Name it
RouteEnterQuote
.3. You can find...