Stopping multiple pre-conditions in server-side plugin
Hi, I am implementing some checks on work item save with 2 pre-conditions (it's more convenient to have two). If the first one fails, I am finding the second still runs. Anyone know if possible to abort completely and stop subsequent preconditions from firing.
I stop the pre-condition with
IAdvisorInfo problem = collector.createProblemInfo(.....)
collector.addInfo(problem)
btw...I assume preconditions run in the order they are listed in the UI. Is that correct/guaranteed?
Thanks
Sola