Guest User

Untitled

a guest
Jun 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. @startuml
  2.  
  3. start
  4. :ClickServlet.handleRequest();
  5. :new page;
  6. if (Page.onSecurityCheck) then (true)
  7. :Page.onInit();
  8. if (isForward?) then (no)
  9. :Process controls;
  10. if (continue processing?) then (no)
  11. stop
  12. endif
  13.  
  14. if (isPost?) then (yes)
  15. :Page.onPost();
  16. else (no)
  17. :Page.onGet();
  18. endif
  19. :Page.onRender();
  20. endif
  21. else (false)
  22. endif
  23.  
  24. if (do redirect?) then (yes)
  25. :redirect process;
  26. else
  27. if (do forward?) then (yes)
  28. :Forward request;
  29. else (no)
  30. :Render page template;
  31. endif
  32. endif
  33.  
  34. stop
  35.  
  36. @enduml
Add Comment
Please, Sign In to add comment