| Attributes |
| Name | Required | Request-time | Type | Description |
| forUpdate | false | false | javax.el.ValueExpression
(must evaluate to boolean)
| A boolean that controls whether the task instance is to be read for update. This typically entails using a SELECT ... FOR UPDATE statement, when database persistence is involved. By default, this flag is false if the action is invoked during the RENDER_RESPONSE phase, and true otherwise. |
| id | true | false | javax.el.ValueExpression
(must evaluate to long)
| The ID of the task instance to load. |
| name | false | false | javax.el.ValueExpression
(must evaluate to java.lang.String)
| A different name to use for this action. Action names are used by some navigation handlers. |
| navigate | false | false | javax.el.ValueExpression
(must evaluate to boolean)
| A boolean expression that can be used to control whether navigation will be attempted after this action completes. |
| target | true | false | javax.el.ValueExpression
(must evaluate to org.jbpm.taskmgmt.exe.TaskInstance)
| An EL expression into which the task instance should be stored. |
| unless | false | false | javax.el.ValueExpression
(must evaluate to boolean)
| A boolean expression that, if true, will prevent this action from being run. |