Lecture04- Use Case Diagrams

48
Computer Engineering Department Object Oriented Software Modeling and Design CE 350 Abdel-Karim Al-Tamimi, Ph.D. [email protected] http:// faculty.yu.edu.jo/ altamimi Al-Tamimi 2011 © 1

description

Introduction to Use case diagrams, use case diagrams examples

Transcript of Lecture04- Use Case Diagrams

Page 1: Lecture04- Use Case Diagrams

Computer Engineering Department

Computer Engineering Department

Object Oriented Software Modeling and Design

CE 350Abdel-Karim Al-Tamimi, Ph.D.

[email protected]://faculty.yu.edu.jo/

altamimi

Al-Tamimi 2011 © 1

Page 2: Lecture04- Use Case Diagrams

Overview

• Use-case Diagrams

Al-Tamimi 2011 © 2

Page 3: Lecture04- Use Case Diagrams

Use-Case Diagrams

Al-Tamimi 2011 © 3

Page 4: Lecture04- Use Case Diagrams

Why We Use Use-case Diagrams

Al-Tamimi 2011 © 4

Page 5: Lecture04- Use Case Diagrams

Why We Use Use-case Diagrams

• Answers the main questions about your system:–Who’s your system’s for?–What must it do?–Why build it in the first place?

• System users: Actors• System normal situations: use-cases

Al-Tamimi 2011 © 5

Page 6: Lecture04- Use Case Diagrams

Why We Use Use-case Diagrams

• Stay focus on your client’s goals• A good use case must represent the

point of view of the people who will use or interact with the system

• A complete set of use cases = system requirements

Al-Tamimi 2011 © 6

Page 7: Lecture04- Use Case Diagrams

Use-Case Diagram

• A use-case model is a diagram or set of diagrams that together with some additional documentation show what the proposed software system is designed to do. A use-case diagram consists of three main components:– Actors – Use-cases, and their communications– some additional documentation such as use-

case descriptions for elaborating use-cases and problem statements that are initially used for identifying use cases

Al-Tamimi 2011 © 7

Page 8: Lecture04- Use Case Diagrams

Use-Case Diagram: Actors

• Usually represented with a stick figure

• An actor may be:– People – Computer

hardware and devices

– External systems

8Al-Tamimi 2011 ©

Page 9: Lecture04- Use Case Diagrams

Use-Case Diagram: Actors

• An actor represents a role that a user can play, but NOT a specific user

• Primary actors are those who use the system’s main functions, deriving benefits from it directly. – Primary actors are completely outside the system and drive

the system requirements– Primary actors use the system to achieve an observable user

goal• Secondary actors play a supporting role to facilitate

the primary actors to achieve their goals.– Secondary actors often appear to be more inside the system

than outside– Secondary actors are usually not derived directly from the

statement of requirements. Hence, the designer can have more freedom in specifying the roles of these actors

– Usually found on the right of the system (primary on the left)

Al-Tamimi 2011 © 9

Page 10: Lecture04- Use Case Diagrams

Use-Case Diagrams: Actors

Al-Tamimi 2011 © 10

• Actors are treated like classes and thus can be generalized

10

Student

MasterStudent BAStudent

Page 11: Lecture04- Use Case Diagrams

Use-Case Diagrams: Actors and Goals

1. Start by identifying the actors of the system

2. See if the actors can be generalized or not

3. Define the goals of the system and how they can be achieved using the systems’ actors

4. Illustrate these goals and actors actions using use-case diagram(s)

Al-Tamimi 2011 © 11

Page 12: Lecture04- Use Case Diagrams

Use-case Diagram: Use-case

Al-Tamimi 2011 © 12

• A use case describes a sequence of actions a system performs to yield an observable result or value to a particular actor

• Naming convention = verb + noun (or) verb + noun-phrase, – e.g. withdraw cash

• A good use case should:– Describe a sequence of transactions performed by a system

that produces a measurable result (goal) for a particular actor– Describe the behavior expected of a system from a user's

perspective– Enable the system analyst to understand and model a system

from a high-level business viewpoint– Represent the interfaces that a system makes visible to the

external entities and the interrelationships between the actors and the system

Page 13: Lecture04- Use Case Diagrams

EBP Test for Use-Cases

• Elementary Business Process (EBP) is a term from the business process engineering field defined as:

• A task performed by one person in one place at one time, in response to a business event, which adds a measurable business value and leaves the data in a consistent state – E.g. Approve Credit or Cancel Order

Al-Tamimi 2011 © 13

Page 14: Lecture04- Use Case Diagrams

Use-Case Diagram: Use-Case

Al-Tamimi 2011 © 14

Page 15: Lecture04- Use Case Diagrams

Use-Case Diagram: Use-Case

Al-Tamimi 2011 © 15

Page 16: Lecture04- Use Case Diagrams

Use-Case Diagram: Use-Case

Al-Tamimi 2011 © 16

Page 17: Lecture04- Use Case Diagrams

Use-Case Diagram: Example

Al-Tamimi 2011 © 17

Actor

Association System boundary

Use-case

System name

Page 18: Lecture04- Use Case Diagrams

Use-Case Diagram: Example

• Let us consider a simple hotel information system for two types of customers: – Tour Group customers and Individual

customers– Tour Group customers are those who

have made reservations through a tour operator in advance, while Individual customers make their reservations directly with the hotel

– Both types of customers can book, cancel, check-in and check-out of a room by phone or via the Internet

Al-Tamimi 2011 © 18

Page 19: Lecture04- Use Case Diagrams

Use-Case Diagram: Example

Al-Tamimi 2011 © 19

Page 20: Lecture04- Use Case Diagrams

Structuring Use-cases with Relationships

• In the process of developing a use case model, we may discover that some use cases share common behaviors

• There are also situations where some use cases are very similar but they have some additional behaviors

• For example, Withdraw Money and Deposit Money both require the user to log-on to an ATM system

Al-Tamimi 2011 © 20

Page 21: Lecture04- Use Case Diagrams

Structuring Use-cases with Relationships

Al-Tamimi 2011 © 21

Use Case: Withdraw Money

Flow of Events:

1. The user inserts an ATM card. The system prompts the user to enter a password.2. The user enters the password. The system validates the user password.

....….….

Use Case: Deposit Money

Flow of Events:

1. The user inserts an ATM card. The system prompts the user to enter a password.2. The user enters the password. The system validates the user password.

....….….

Common Behavior

Page 22: Lecture04- Use Case Diagrams

Structuring Use-cases with Relationships

Al-Tamimi 2011 © 22

Use Case: Withdraw Money

Flow of Events:

1. include (Login Account)....….….

Use Case: Deposit Money

Flow of Events:

1. include (Login Account)….….…..

Use Case: Login Account

Flow of Events:

1. The user inserts an ATM card. The system prompts the user to enter a password.2. The user enters the password. The system validates the user password.

Page 23: Lecture04- Use Case Diagrams

The <<include>> Relationship

• Include relationships are used when two or more use cases share some common portion in a flow of events

• This common portion is then grouped and extracted to form an inclusion use case for sharing among two or more use cases

• Most use cases in the ATM system example, such as Withdraw Money, Deposit Money or Check Balance, share the inclusion use-case Login Account

Al-Tamimi 2011 © 23

Page 24: Lecture04- Use Case Diagrams

The <<include>> Relationship

Al-Tamimi 2011 © 24

Login Account

(Included use case)

Withdraw Money

(Base use case)

Page 25: Lecture04- Use Case Diagrams

The <<include>> Relationship

• When to use include relationship:– The behavior of the

inclusion use case is common to two or more use cases

– The result of the behavior that the inclusion use case specifies, not the behavior itself, is important to the base use case

25Al-Tamimi 2011 ©

Page 26: Lecture04- Use Case Diagrams

The <<include>> Relationship: Example

Al-Tamimi 2011 © 26

Page 27: Lecture04- Use Case Diagrams

The <<include>> Relationship: Example

Al-Tamimi 2011 © 27

Page 28: Lecture04- Use Case Diagrams

The <<extend>> Relationship

• In UML modeling, you can use an extend relationship to specify that one use case (extension) extends the behavior of another use case (base)

• This type of relationship reveals details about a system or application that are typically hidden in a use case

Al-Tamimi 2011 © 28

Page 29: Lecture04- Use Case Diagrams

The <<extend>> Relationship

• The extend relationship specifies that the incorporation of the extension use case is dependent on what happens when the base use case executes

• The extension use case owns the extend relationship. You can specify several extend relationships for a single base use case

Al-Tamimi 2011 © 29

Page 30: Lecture04- Use Case Diagrams

The <<extend>> Relationship

• While the base use case is defined independently and is meaningful by itself, the extension use case is not meaningful on its own

• The extension use case consists of one or several behavior sequences (segments) that describe additional behavior that can incrementally augment the behavior of the base use-case

• Each segment can be inserted into the base use case at a different point, called an extension point

Al-Tamimi 2011 © 30

Page 31: Lecture04- Use Case Diagrams

The <<extend>> Relationship

Al-Tamimi 2011 © 31

Process Excess Amount (Extending use case)

Withdraw Money (Base use case)

If conditional guard is true, extending flow is executed

Page 32: Lecture04- Use Case Diagrams

The <<extend>> Relationship

• The extension use case can access and modify the attributes of the base use case; however, the base use case is not aware of the extension use case and, therefore, cannot access or modify the attributes and operations of the extension use case

Al-Tamimi 2011 © 32

Page 33: Lecture04- Use Case Diagrams

The <<extend>> Relationship

• You can add extend relationships to a model to show the following situations:– A part of a use case that

is optional system behavior

– A subflow is executed only under certain conditions

– A set of behavior segments that may be inserted in a base use case

33Al-Tamimi 2011 ©

Page 34: Lecture04- Use Case Diagrams

The <<extend>> Relationship

Al-Tamimi 2011 © 34

Page 35: Lecture04- Use Case Diagrams

The <<extend>> Relationship

Al-Tamimi 2011 © 35

Page 36: Lecture04- Use Case Diagrams

The <<extend>> Relationship

Al-Tamimi 2011 © 36

Page 37: Lecture04- Use Case Diagrams

Al-Tamimi 2011 © 37

Page 38: Lecture04- Use Case Diagrams

The Generalization Relationship

• A child use-case can inherit the behaviors, relationships and communication links of a parent use-case (like Actor generalization)

• In other words, it is valid to put the child use-case at a place wherever a parent use-case appears

• The relationship between the child use-case and the parent use-case is the generalization relationship

• For example: suppose the ATM system can be used to pay bills. Pay Bill has two child use cases: Pay Credit Card Bill and Pay Utility Bill

38

Page 39: Lecture04- Use Case Diagrams

The Generalization Relationship

39

Page 40: Lecture04- Use Case Diagrams

The Generalization Relationship

40

Page 41: Lecture04- Use Case Diagrams

Use-Case Scope

• A use case must be initiated by an actor• When a use case is considered complete,

there are no further inputs or outputs; the desired functionality has been performed, or an error has occurred

• After a use case has completed, the system is in a state where the use case can be started again, or the system is in an error state

41

Page 42: Lecture04- Use Case Diagrams

Base Use-Case vs. Abstract Use-Case

• Base use case – invoked directly by actor to achieve an observable goal

• Abstract use case – invoked by other use cases and is not a complete goal from user’s perspective

• e.g. withdraw cash (concrete use case) vs. login (abstract use case)

42

Page 43: Lecture04- Use Case Diagrams

Use-Case Scope

43

Page 44: Lecture04- Use Case Diagrams

Use-Case Scope

44

Page 45: Lecture04- Use Case Diagrams

Summary of NotationsConstruct Description Notation

Use-case A sequence of transactions performed by a system that

produces a measurable result for a particular actor

Actor A coherent set of roles that users playwhen interacting with these use cases

System Boundary

The boundary between the physical system and the actors who interact with the physical system

45

Page 46: Lecture04- Use Case Diagrams

Summary of Notations

46

Construct Description Notation

Association The participation of an actor in a use case, i.e. an instance of an actor and instances of a use case communicating with each other

Generalization

A taxonomic relationship between a general use case and a more specific use case. The arrow head points to the general use case

Extend A relationship between an extension use case and a base use case, specifying how the behavior of the extension use case can beinserted into the behavior defined for the base use case. The arrow head points to the base use case

Page 47: Lecture04- Use Case Diagrams

Summary of Notations

47

Construct Description Notation

Include A relationship between a base use case and an inclusion use case, specifying how the behavior for the inclusion use case is inserted into the behavior defined for the base use case. The arrow head points to theinclusion use case

Page 48: Lecture04- Use Case Diagrams

Resources

• Chapter 3 from “Object-Oriented Technology: From diagram to code with Visual Paradigm for UML”

• UML 2 for dummies, chapters 8-10• UML 2 certification guide, chapter 2• Chapter 6 from “Applying UML and

Patterns”

Al-Tamimi 2011 © 48