For the complete documentation index, see llms.txt. This page is also available as Markdown.

Processes

Valtimo is built on top of Operaton, it uses Operaton to create BPMN processes.

This section contains information on how to configure and use BPMN processes in Valtimo.

Access control

Access to the processes can be configured through access control. More information about access control can be found in the access control documentation.

Resources and actions

Resource type
Action
Effect

com.ritense.valtimo.operaton.domain.OperatonExecution

create

Allows creating an execution for a process definition.

com.ritense.valtimo.operaton.domain.OperatonTimer

complete

Allows skipping a waiting timer of a running process, so the process continues as if the timer had elapsed.

com.ritense.valtimo.operaton.domain.OperatonProcessDefinition

-

-

Process definitions have no actions currently. As a result, they can only be used as part of container conditions. See the example below on how to use this.

Examples

Permission to start a process for one specific process definition
{
    "resourceType": "com.ritense.valtimo.operaton.domain.OperatonExecution",
    "action": "create",
    "conditions": [
        {
            "type": "container",
            "resourceType": "com.ritense.valtimo.operaton.domain.OperatonProcessDefinition",
            "conditions": [
                {
                    "type": "field",
                    "field": "key",
                    "operator": "==",
                    "value": "evenementenvergunning"
                }
            ]
        }
    ]
}
Permission to skip a waiting timer of one specific process definition

A timer can be scoped through the process instance it belongs to, so the same container conditions that are available on OperatonExecution can be used for timers as well.

Last updated