I have checked that if we want to skip any task then we are setting skipExpression property from the flowable modeler.
But is there any way to set this skipExpression using java code?
I have checked that if we want to skip any task then we are setting skipExpression property from the flowable modeler.
But is there any way to set this skipExpression using java code?
You mean you want to change the model (add a skipExpression to the definition)? You can get the definition as BpmnModel through the RepositoryService. In java, you can add stuff and redeploy.
Hi @joram, Thank you for the response,
Q- you want to change the model (add a skipExpression to the definition)?
Something like that, we want to set skip expression from the java side and we want to skip the task.
but it must redeploy workflow right? or is there any other way to set this expression and skip task without redeploying workflow?
~Thanks!