-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsequence_example.plantuml
47 lines (36 loc) · 996 Bytes
/
sequence_example.plantuml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
@startuml
'https://plantuml.com/en/sequence-diagram
!include https://raw.githubusercontent.com/cherub-i/plantuml-helpers/main/target/include.iuml
!include https://raw.githubusercontent.com/cherub-i/plantuml-helpers/main/ressources/colors_audi.iuml
' skinparam style strictuml
actor "Nutzer" as nutzer
box "//Typ A//"
participant "Liste" as l
participant "Positionen" as p
endbox
participant "Grunddaten" as gd
nutzer -> l : erstellen
activate l
hnote over l, p : anlegen
nutzer -> l : Statusübergang "Bearbeitung starten"
hnote over l, p : Status: Bearbeiten
activate p
l -> p : Positionen\ngenerieren
activate l #abc
activate p #abc
p ->o gd : verwendet
deactivate p
deactivate l
nutzer -> p : Postionen bearbeiten
activate p #abc
p ->o gd : verwendet
deactivate p
nutzer -> p : Postionen updaten
activate p #abc
p ->o gd : verwendet
deactivate p
deactivate p
nutzer -> l : Statusübergang "Genehmigung"
hnote over l, p : Status: Genehmigung
footer Liste & Positionen
@enduml