Wizard page attributes in the web UI framework
There are many wizard page attributes, some of which include, id, impl, and type.
The following table shows the page attributes to specify in the wizardEntities tag of your XML file when you create a wizard:
| Attribute | Description | Constraints |
|---|---|---|
| id | The ID of the wizard page. | Should be unique within the wizard. |
| impl | The JSP/Struts action which renders the page. | Mandatory |
| type | Indicates the type of entity (PAGE or RULE). | Mandatory |
| start | Indicates if this page is the starting entity of the wizard. | Only one PAGE or RULE should be marked as true. |
| last | Indicates if this page is the last entity of the wizard. | Only one PAGE or RULE should be marked as true. |
| category | Indicates the category of this page. Used for breadcrumbs. | |
| namespace/name | The namespace for which data would be sent out of this page. If a rule originates from this page, the namespaces should be a superset of the defined namespaces for that rule. There can be many such namespaces. |