Hi Team ,
I am trying to create a workflow which changes its state only when an external change happens. Basically the workflow am planning to have only these below states.
submit(start, "Submitted"), //
review(manual, "Under review"), //
approve(end, "Approved"), //
needMoreInfo(manual, "Require more information"), //
reject(end, "Rejected");
I want to manually go from one state to another. But am getting bean exception if dont create next action method for state submit , so am forced to right atleast one state that moves automatically to an another state , Is there any way to achieve the usecase am trying for ?
And is there any way to restrict traveral to states which are not allowed to make transition ?
that is like submit -> needMoreInfo
Thanks in advance !
Thanks & Regards
Aboobacker N K