I'd like to add some information to my process steps that i want to retrieve programmatically during the execution of the process (e. g. typical execution time thresholds, name of the responsible persons etc). BPMN 2.0 offers the annotation artifact but based on what i've learned so far, activiti is not able to retrieve this information during the actual execution of the process.
- Any bpmn element should support 'documentation' tag. You can get it through the BpmnModel. - Any bpmn element supports 'extensionElement', which is also parsed and retrieveable through the BpmnModel.
While i can easily retrieve the extensionElements of a process through the BpmnModel but i don't see any method to retrieve the extensionElements of the tasks…