BAEL-305 - adding plantuml
This commit is contained in:
parent
3d7ccfd56d
commit
6913a968e5
Binary file not shown.
After Width: | Height: | Size: 9.3 KiB |
|
@ -0,0 +1,22 @@
|
|||
@startuml
|
||||
|
||||
class Handler {
|
||||
doGet
|
||||
doPost
|
||||
}
|
||||
|
||||
abstract class AbstractCommand {
|
||||
process
|
||||
}
|
||||
class ConcreteCommand1 {
|
||||
process
|
||||
}
|
||||
class ConcreteCommand2 {
|
||||
process
|
||||
}
|
||||
|
||||
Handler .right.> AbstractCommand
|
||||
AbstractCommand <|-- ConcreteCommand1
|
||||
AbstractCommand <|-- ConcreteCommand2
|
||||
|
||||
@enduml
|
Loading…
Reference in New Issue