Use Case Diagram

From Open Risk Manual
Revision as of 17:26, 16 February 2022 by Wiki admin (talk | contribs) (Created page with "== Definition == A '''Use Case Diagram''' == PlantUML Elements == A PlantUML use case diagram specifies and shows the following: * Actors * Messages (methods) invoked b...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Definition

A Use Case Diagram

PlantUML Elements

A PlantUML use case diagram specifies and shows the following:

  • Actors
  • Messages (methods) invoked by these actors
  • Return values (if any) associated with previous messages
  • Indication of any loops or iteration area

Example

@startuml
'https://plantuml.com/sequence-diagram

autonumber

Payer -> Payee: Payment 
Payee --> Payer: Payment Confirmation

Payer -> Payee: Another Payment
Payee --> Payer: Another Payment Confirmation
@enduml

Sequence Diagram

References