⭕Process

Valtimo is built on top of Camunda, it uses Camunda 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 here.

Resources and actions

Resource type
Action
Effect

com.ritense.valtimo.camunda.domain.CamundaExecution

create

Allows creating an execution for a process definition.

com.ritense.valtimo.camunda.domain.CamundaProcessDefinition

-

-

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

Examples

Permission to start a process for one specific process definition
{
    "resourceType": "com.ritense.valtimo.camunda.domain.CamundaExecution",
    "action": "create",
    "conditions": [
        {
            "type": "container",
            "resourceType": "com.ritense.valtimo.camunda.domain.CamundaProcessDefinition",
            "conditions": [
                {
                    "type": "field",
                    "field": "key",
                    "operator": "==",
                    "value": "evenementenvergunning"
                }
            ]
        }
    ]
}

Last updated