Use Case Diagram

From Open Risk Manual
Revision as of 17:32, 16 February 2022 by Wiki admin (talk | contribs)

Definition

A Use Case Diagram is an UML diagram that aims to present a statement of functionality required of a system (e.g. software)

PlantUML Elements

A PlantUML use case diagram specifies and shows the following:

  • An Actor represents a requirement (stimulus) of the system
  • An Action representing a capability of the system
  • A Subject representing the item acted upon by an Action of the system


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