Skip to content

Commit

Permalink
chore: add relations for TERMINATED to state diagrams
Browse files Browse the repository at this point in the history
  • Loading branch information
juliapampus committed Aug 3, 2023
1 parent 71bc11c commit 4511bea
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions negotiation/contract.negotiation.state.machine.puml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,21 @@ state TERMINATED $lightRed #$borderRed: <color:$darkGray>ContractNegotiationTer
[*] --> REQUESTED: C
REQUESTED --> OFFERED: P
REQUESTED --> AGREED: P
REQUESTED --> TERMINATED: P

[*] --> OFFERED: P
OFFERED --> REQUESTED: C
OFFERED --> ACCEPTED: C
OFFERED --> TERMINATED: C

ACCEPTED --> AGREED: P
ACCEPTED -> TERMINATED: P

AGREED --> VERIFIED: C
AGREED --> TERMINATED: C

VERIFIED --> FINALIZED: P
VERIFIED -> TERMINATED: P

FINALIZED -->[*]
TERMINATED --> [*]
Expand Down
3 changes: 3 additions & 0 deletions transfer/transfer-process-state-machine.puml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ state TERMINATED $lightRed #$borderRed : <color:$darkGray>TransferTerminationMes

[*] --> REQUESTED: C
REQUESTED --> STARTED: P
REQUESTED --> TERMINATED: P
STARTED --> COMPLETED: P/C
STARTED --> SUSPENDED: P/C
STARTED --> TERMINATED: P/C
SUSPENDED --> STARTED: P/C
SUSPENDED --> TERMINATED: P/C
COMPLETED -->[*]

TERMINATED --> [*]
Expand Down

0 comments on commit 4511bea

Please sign in to comment.