user6553111
user6553111

Reputation:

Creating processes in Java using Activiti

I have a requirement to create a dynamic multi level approval process for my application using activity.process diagram

The Number of steps and parallel approvals in each step is decided at run time. In the diagram above, the number of levels, number of concurrent approvals with within each level are defined at record creation. I am not looking to change the process at run time, but create the process at run time.

Is this possible using Activiti?

Upvotes: 1

Views: 1322

Answers (1)

Martin Grofčík
Martin Grofčík

Reputation: 194

I am not looking to change the process at run time, but create the process at run time.

Is this possible using Activiti?

Yes, it is. In fact I tried both, but for completely different requirement. https://gromar01.wordpress.com/2016/06/16/design-by-doing-with-activiti6/

I would say that for your case it is possible to cover your requirements by standard BPMN model and do not use dynamically created process models.

Upvotes: 1

Related Questions