Activity Diagram: Jump to particular label

0 votes
asked Jun 18, 2019 in Question / help by anonymous
In the below sample I would like jump to "do direct?" condition directly, if "continue processing?" is No. How to achieve it?

@startuml

start

:ClickServlet.handleRequest();

:new page;

if (Page.onSecurityCheck) then (true)

  :Page.onInit();

  if (isForward?) then (no)

:Process controls;

if (continue processing?) then (no)

   :do redirect?;

  stop

endif

if (isPost?) then (yes)

  :Page.onPost();

else (no)

  :Page.onGet();

endif

:Page.onRender();

  endif

else (false)

endif

if (do redirect?) then (yes)

  :redirect process;

else

  if (do forward?) then (yes)

:Forward request;

  else (no)

:Render page template;

  endif

endif

stop

@enduml

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:

[Antispam2 Feature: please please wait 1 or 2 minutes (this message will disappear) before pressing the button otherwise it will fail](--------)
To avoid this verification in future, please log in or register.
...