HTTP Example:POST /API/runtimeAPI/evaluateGroovyExpression/{processDefinitionUUID}
expression=…&options=…
| API Example: AbstractRemoteRuntimeAPI.evaluateGroovyExpression({'processDefinitionUUID': , 'expression': , 'options': }); |
Evaluates an expression using Groovy.
If more than one Groovy expressions are in the expression, they must start with ${
and finish with }. It returns an Object if the expression is an only Groovy one or a String
if the expression contains String and or more than one Groovy expression. - Output:
- java.lang.Object -
- Form parameters:
- expression - the expression
- options - the options map (domain, queyList, user)
- Produces:
- text/*
- application/xml
- Consumes:
- application/x-www-form-urlencoded
- application/xml
|