-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
zwdbox
committed
Mar 15, 2020
1 parent
9f6c0d4
commit b0027de
Showing
6 changed files
with
37 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
@startuml | ||
|
||
start | ||
:ClickServlet.handleRequest(); | ||
:new page; | ||
if (Page.onSecurityCheck) then (true) | ||
:Page.onInit(); | ||
if (isForward?) then (no) | ||
:Process controls; | ||
if (continue processing?) then (no) | ||
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 |
File renamed without changes.
Binary file not shown.
Binary file not shown.
File renamed without changes.