Petals-SE-Flowable 1.2.0+

Version 1 by Christophe DENEUX
on Dec 12, 2018 17:40.

compared with
Key
This line was removed.
This word was removed. This word was added.
This line was added.

Changes (5)

View Page History
|| Interface name || Service name || Description ||
| {{ProcessInstances}} | {{ProcessInstancesService}} | To manage process instances |
| {{Executions}} | {{ExecutionsService}} | To manage internal Flowable executions |
| {{Task}} | {{TaskService}} | To manage tasks of process instances |
| {{User}} | {{UserService}} | To manage users of Flowable identity service |
The operation returns identifier of groups matching the given criteria.

h2. The service "ProcessInstancesService"

The service "ProcessInstancesService" provides following operations:
| {{process-definition-identifier}} | Process instances returned must match this process definition identifier. | No default value |
| {{process-instance-identifier}} | Only the process instance matching this identifier is returned. | No default value |
| {{variables}} | Process instances returned must match theses variables, names and values. | No default value |
An optional attribute '{{as}}' should be used for variable types different from '{{string}}'. Possible values are: '{{long}}', '{{double}}', '{{date}}', '{{string}}', '{{boolean}}'. | No default value |

The operation returns a list of process instances. Each process instance contains:
* '{{already-activated}}', the process instance is already activated.

h2. The service "ExecutionsService"

The service "ExecutionsService" provides following operations:
|| Operation name || Description ||
| {{getExecutions}} | Query executions according to the given criteria. |

h3. The operation "getExecutions"

The search criteria are given by the following parameters, each criteria operates as a filter:
|| Parameter name || Description || Default value ||
| {{process-definition-identifier}} | Executions returned must match this process definition identifier. | No default value |
| {{process-instance-identifier}} | Only the executions matching this identifier are returned. | No default value |
| {{event-name}} | Only the executions waiting this event through an intermediate message catch event' are returned. | No default value |

The operation returns a list of executions. Each execution contains:
* {{process-instance-identifier}}: the process instance identifier associated to the execution.

h2. The service "TaskService"