Thanks for your reply.
In Activiti can you pause a process without using Activiti Explorer as the UI? Actually, what I am trying to achive is:
We have Spring MVC that starts the process. The process is made up of a number of custom JavaDelegates. What we would like to do now is:
1) Add a User Task as part of the process, so the User does something. However, not using Activiti Explorer at all.
2) To pause a process
As you can see, the front end will call one REST endpoint that goes through the Spring MVC Controller. Now you can assume we have many User Task. Suppose the user has completed one part of the full process and they are a number of User Tasks. We don't want the user next time to do something they have already done. Will this be a different endpoint or we use the same endpoint?
For example, the first process might be to create a record. The next might be a User Task enter further details. So at this point, I would expect the process to pause and wait for the user enters the further details. But, the further details not through Activiit Explorer. What are the options available?