BPM Object Tag Library
Tag invokea


This tag has the same functionality as the invoke tag. The only difference is that the arguments are passed in an Array.

Example:

To invoke the method fooMethod with the arguments "arg1" and "arg2", both of type String:

<f:invokea var='${example}' methodName='fooMethod' args="<%=new String[]{"arg1","arg2"}%>"/>


Attributes
NameRequiredRequest-timeTypeDescription
vartruetruejava.lang.StringBPM 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.
methodNametruefalsejava.lang.StringName of the method to invoke.
argsfalsetruejava.lang.StringArray containing the values of the method's arguments.
retAttNamefalsefalsejava.lang.StringReturning attribute name
retAttScopefalsefalsejava.lang.StringScope of the attribute where the returning value of this method is stored. Possible values are: Page, Request, Session and Application.

Variables
No Variables Defined.


Output Generated by Tag Library Documentation Generator.