====== UML の記述 ======
ドキュメント内に UML を記述したいときは、[[ https://plantuml.com/ja/ | PlantUML ]] の拡張機能 PlantUML Parser をインストールします。
記述の方法等は本家などを確認してください。
https://plantuml.com/ja/
あまり細かい UML を記述するのは難しいかも知れませんが、簡素化した図の記述によって理解を深める手助けにはなるでしょう。
Alice -> Bob: Authentication Request
Bob -> Jane: Authentication Request Proxy
Jane --> Bob: Authentication Result
Bob --> Alice: Authentication Response
Alice -> Bob: Another authentication Request
Alice <-- Bob: another authentication Response
@startuml
User << Human >>
:Main Database: as MySql << Application >>
(Start) << One Shot >>
(Use the application) as (Use) << Main >>
User -> (Start)
User --> (Use)
MySql --> (Use)
@enduml