8f87699910
Added some data model diagrams, sequence diagrams and state machine diagrams. The state machine diagrams and sequence diagrams are built with PlantUML whereas data model diagrams are built with Dia. Also added some textual description with the sequence diagrams. Change-Id: Iffbb47b0f2d12ce63eeaa1531a1bd1a790d69e79 Closes-Bug: #1531802
15 lines
655 B
Plaintext
15 lines
655 B
Plaintext
@startuml
|
|
|
|
[*] --> PENDING: Audit requested by Administrator
|
|
PENDING --> ONGOING: Audit request is received\nby the Watcher Decision Engine
|
|
ONGOING --> FAILED: Audit fails\n(no solution found, technical error, ...)
|
|
ONGOING --> SUCCEEDED: The Watcher Decision Engine\ncould find at least one Solution
|
|
FAILED --> DELETED : Administrator wants to\narchive/delete the Audit
|
|
SUCCEEDED --> DELETED : Administrator wants to\narchive/delete the Audit
|
|
PENDING --> CANCELLED : Administrator cancels\nthe Audit
|
|
ONGOING --> CANCELLED : Administrator cancels\nthe Audit
|
|
CANCELLED --> DELETED : Administrator wants to\narchive/delete the Audit
|
|
DELETED --> [*]
|
|
|
|
@enduml
|