| |||||||
| FRAMES NO FRAMES | |||||||
To invoke a method over a BPM Object instance:
<f:invoke var="${bpmObject}" methodName="myMethod"/> To invoke a method over an attribute of type BPM Object:
<f:invoke var=${user.history} methodName="myMethod"/> Method with return value:
<f:invoke var="${bpmObject}" methodName="myMethod" retAttName="myAttribute" retAttScope="Session" />| Attributes | ||||
| Name | Required | Request-time | Type | Description |
| var | true | true | java.lang.String | BPM Object instance over which the method is invoked. EL(Expression Language) is used to access the BPM Object variable. You can access attributes of type BPM Object, exactly in the same way you do in Java or PBL. |
| methodName | true | false | java.lang.String | Name of the method to invoke. |
| retAttName | false | false | java.lang.String | Name of the variable where the returning value will be stored. |
| retAttScope | false | false | java.lang.String | Scope of the attribute where the returning value of this method is stored. Possible values are: Page, Request, Session and Application. |
| Variables | No Variables Defined. |
| |||||||
| FRAMES NO FRAMES | |||||||