Functional Modeling
Functional Modeling
Functional Modeling
Object-Oriented Software
Development
COSC 611
Outline
Use Cases
• Finding Use Cases
• Flow of Events
• Summary
2
Scenario example from last lecture: Warehouse
on Fire
• Bob, driving down main street in his patrol car notices smoke
coming out of a warehouse. His partner, Alice, reports the
emergency from her car.
• Alice enters the address of the building into her wearable
computer, a brief description of its location (i.e., north west
corner), and an emergency level.
• She confirms her input and waits for an acknowledgment.
• John, the dispatcher, is alerted to the emergency by a beep of his
workstation. He reviews the information submitted by Alice and
acknowledges the report. He allocates a fire unit and sends the
estimated arrival time (ETA) to Alice.
• Alice received the acknowledgment and the ETA.
3
Observations about Warehouse on Fire Scenario
• Concrete scenario
• Describes a single instance of reporting a fire
incident.
• Does not describe all possible situations in which a
fire can be reported.
• Participating actors
• Bob, Alice and John
4
After the scenarios are formulated
• Find all the use cases in the scenario that specify all
instances of how to report a fire
• Example: “Report Emergency“ in the first paragraph of the
scenario is a candidate for a use case
• Describe each of these use cases in more detail
• Participating actors
• Describe the entry condition
• Describe the flow of events
• Describe the exit condition
• Describe exceptions
• Describe non-functional requirements
5
Use Case Model for Incident Management
tes>>
initia
<< OpenIncident
Dispatcher
<<
in
FieldOfficer
it
<<i
ia
nit
te
s>
iat
>
es>
>
ReportEmergency
AllocateResources
6
How to find Use Cases
• Select a narrow vertical slice of the system (i.e. one
scenario)
• Discuss it in detail with the user to understand the user’s
preferred style of interaction
• Select a horizontal slice (i.e. many scenarios) to define
the scope of the system.
• Discuss the scope with the user
• Use illustrative prototypes (mock-ups) as visual
support
• Find out what the user does
• Task observation (Good)
• Questionnaires (Bad)
7
Use Case Example: ReportEmergency
• Use case name: ReportEmergency
• Participating Actors:
• Field Officer (Bob and Alice in the Scenario)
• Dispatcher (John in the Scenario)
• Exceptions:
• The FieldOfficer is notified immediately if the connection
between terminal and central is lost.
• The Dispatcher is notified immediately if the connection
between a FieldOfficer and central is lost.
• Flow of Events: on next slide.
• Special Requirements:
• The FieldOfficer’s report is acknowledged within 30
seconds. The selected response arrives no later than 30
seconds after it is sent by the Dispatcher.
8
Use Case Example: ReportEmergency
Flow of Events
1. The FieldOfficer activates the “Report Emergency” function of
her terminal. FRIEND responds by presenting a form to the
officer.
2. The FieldOfficer fills the form, by selecting the emergency level,
type, location, and brief description of the situation. The
FieldOfficer also describes a response to the emergency
situation. Once the form is completed, the FieldOfficer submits
the form, and the Dispatcher is notified.
3. The Dispatcher creates an Incident in the database by invoking
the OpenIncident use case. He selects a response and
acknowledges the report.
4. The FieldOfficer receives the acknowledgment and the selected
response.
9
Another Example: Allocate a Resource
• Actors:
• Field Supervisor: This is the official at the emergency site.
• Resource Allocator: The Resource Allocator is responsible
for the commitment and decommitment of the Resources
managed by the FRIEND system.
• Dispatcher: A Dispatcher enters, updates, and removes
Emergency Incidents, Actions, and Requests in the system.
The Dispatcher also closes Emergency Incidents.
• Field Officer: Reports accidents from the Field
10
Allocate a Resource (cont’d)
• Use case name: AllocateResources
• Participating Actors:
Field Officer (Bob and Alice in the Scenario)
Dispatcher (John in the Scenario)
Resource Allocator and Field Supervisor
• Entry Condition:
The Resource Allocator has selected an available resource
• Flow of Events:
1. The Resource Allocator selects an Emergency Incident
2. The Resource is committed to the Emergency Incident
• Exit Condition:
The use case terminates when the resource is committed
The selected Resource is unavailable to other Requests.
• Special Requirements:
The Field Supervisor is responsible for managing Resources
11
Order of steps when formulating use cases
ManageIncident
<<
in
cl
ud
e>
>
14
<<include>>: Reuse of Existing Functionality
• Problem: There are overlaps among use cases. How can we
reuse flows of events instead of duplicating them?
• Solution: The includes association from use case A to use case
B indicates that an instance of use case A performs all the
behavior described in use case B (“A delegates to B”)
• Example: Use case “ViewMap” describes behavior that can be
used by use case “OpenIncident” (“ViewMap” is factored out)
<<inc
lude>
> ViewMap
OpenIncident
de>>
nclu
Base Use
<<i
Case
Supplier
AllocateResources Use Case
15
<<extend>> Association for Use Cases
• Problem: The functionality in the original problem statement
needs to be extended.
• Solution: An extend association from use case A to use case B
• Example: “ReportEmergency” is complete by itself, but can
be extended by use case “Help” for a scenario in which the
user requires help
Help
>>
nd
te
ex
FieldOfficer
<<
ReportEmergency
16
Generalization in Use Cases
• Problem: We want to factor out common (but not identical)
behavior.
• Solution: The child use cases inherit the behavior and meaning of
the parent use case and add or override some behavior.
• Example: “ValidateUser” is responsible for verifying the identity
of the user. The customer might require two realizations:
“CheckPassword” and “CheckFingerprint” Child
Use Case
Parent
Case
CheckPassword
ValidateUser
CheckFingerprint
17
Another Use Case Example
18
Use Case Attributes
Use Case Withdraw Money Using ATM
Initiatiating actor:
• Bank Customer
Preconditions:
• Bank Customer has opened a Bank Account with the Bank and
• Bank Customer has received an ATM Card and PIN
Postconditions:
• Bank Customer has the requested cash or
• Bank Customer receives an explanation from the ATM about
why the cash could not be dispensed
19
Use Case Flow of Events
Actor steps System steps
21
When To stop: From Use Cases to Objects
Level 1 Top Level Use Case
Operations
Level 4 Level 4
A B A and B
are called
Participating
Objects
22
Use Cases used by more than one Object
Level 1 Top Level Use Case
Operations
Level 4 Level 4
A B
Participating
Objects
23
Guidelines for Formulation of Use Cases (1)
• Name
• Use a verb phrase to name the use case.
• The name should indicate what the user is trying to
accomplish.
• Examples:
• “Request Meeting”, “Schedule Meeting”, “Propose
Alternate Date”
• Length
• A use case description should not exceed 1-2 pages. If
longer, use include relationships.
• A use case should describe a complete set of interactions.
24
Guidelines for Formulation of Use Cases (2)
Flow of events:
• Use the active voice. Steps should start either with
“The Actor” or “The System …”.
• The causal relationship between the steps should be
clear.
• All flow of events should be described (not only the
main flow of event).
• The boundaries of the system should be clear.
Components external to the system should be
described as such.
• Define important terms in the glossary.
25
Example of a badly written Use Case
26
Example of a badly written Use Case
27
How to write a use case (Summary)
• Name of Use Case
• Actors
• Description of Actors involved in use case
• Entry condition
• “This use case starts when…”
• Flow of Events
• Free form, informal natural language
• Exit condition
• “This use cases terminates when…”
• Exceptions
• Describe what happens if things go wrong
• Special Requirements
• Nonfunctional Requirements, Constraints
28
Summary
• Scenarios:
• Great way to establish communication with client
• Different types of scenarios: As-Is, visionary, evaluation and training
• Use cases
• Abstractions of scenarios
• Use cases bridge the transition between functional
requirements and objects.
29