HTTP Example:POST /API/queryRuntimeAPI/getActivityInstanceVariables/{activityUUID}
options=…
| API Example: AbstractRemoteQueryRuntimeAPI.getActivityInstanceVariables({'activityUUID': , 'options': }); |
Obtains the variables defined as local to the activity for the given activity UUID.
An empty map is returned if no variable is found. - Output:
- java.util.Map<java.lang.String,java.lang.Object> - the map of activity variables where key is the variable id and value is the variable object
(can be: a plain {@link String}, a {@link Boolean}, a {@link Date}, a {@link Long} or a {@link Double})).
- Form parameters:
- options - the options map (domain, queyList, user)
- Produces:
- text/*
- application/xml
- Consumes:
- application/x-www-form-urlencoded
- text/*
- application/xml
|