Top Banner
MTAT.03.094 Software Engineering Lecture 04: Analysis Kristiina Rahkema On bhealf of Dietmar Pfahl email: [email protected] Fall 2016
41

MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

Jul 19, 2018

Download

Documents

buinhu
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

MTAT.03.094 Software Engineering

Lecture 04: Analysis

Kristiina Rahkema

On bhealf of Dietmar Pfahl

email: [email protected] 2016

Page 2: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Labs This Week

Lab 2 Assignment:1. Project Planning

• Refinement of requirements into Tasks• Prioritization of Tasks (P1, P2, P3, P4)• Responsibility assignment • Effort estimation

2. Five Use Case Descriptions3. (Initial) Domain Model

Set of Req’s

Set of Tasks

5 UC Descr.

Rel 1 Rel 2 R...

P1&2 P3 P4

EffortPrio

Use-Case Descrip tio n s

.

.

.

Use Case Model

Actors

Use Cases

Task Resp. Prio Effort

Page 3: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Labs Next Week

• Part of the lab time will be used for • Assessment

(evaluation) of your Lab 1 solutions

• Each project team must attend with all its members present• If not all team

members present, penalty applies

Page 4: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Schedule of Lectures

Week 01: Introduction to SE

Week 02: Requirements Engineering I

Week 03: Requirements Engineering II

Week 04: Domain Analysis

Week 05: Development Infrastructure I

Week 06: Development Infrastructure II

Week 07: Architecture and Design

Week 08: Refactoring

Week 09: Verification and Validation I

Week 10: Verification and Validation II

Week 11: No lecture

Week 12: Agile/Lean Methods

Week 13: Industry Lecture (Testing)

Week 14: TBD

Week 15: Measurement / Course

wrap-up, review and exam

preparation

Week 16: no lecture

Page 5: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Acknowledgements

Textbooks/Slides:• Ian Sommerville: Software Engineering, 9th edition, 2010

(http://www.softwareengineering-9.com/)

• Ivan Marsic: Software Engineering, 2012 (http://www.ece.rutgers.edu/~marsic/books/SE/book-SE_marsic.pdf)

Page 6: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Structure of Lecture 04

• Preliminaries• UML Class Diagrams

• Domain Analysis and Modelling Example• Identifying Concepts (Responsibilities)• Attributes• Associations

Page 7: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

UML Classes• A class describes a group of

objects with• similar properties (attributes),

• common behaviour (operations),

• common relationships to other objects,

• and common meaning (“semantics”).

• Exampleemployee:

• has a name, employee# and department;

• an employee is hired, and fired; an employee works in one or more projects

Employee

nameemployee#department

hire()fire()assignproject()

Name

Attributes

Operations

Class Obj1Obj2

Obj3

We won’t use this today

Page 8: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Objects vs. Classes• The instances of a class are called objects

• Two different objects may have identical attribute values (like two people with identical name and address)

• Objects have associations with other objects• E.g. Fred_Bloggs:employee is associated with the KillerApp:project object• But we will capture these relationships at the class level (why?)

Fred_Bloggs:employee

name: Fred Bloggs

Employee #: 234609234

Department: Marketing

In diagrams,write :employeein the name fieldto distinguish object from class

Page 9: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Associations• Objects do not exist in isolation from one another

• A relationship represents a connection between things• Types of relationships

• Association• Aggregation and Composition• Generalization

• Class diagrams show classes and their relationships

StaffMemberstaffNamestaff#staffStartDate

ClientcompanyAddresscompanyEmailcompanyFaxcompanyNamecompanyTelephone

1 0..*liaises withcontactperson

ClientList

Page 10: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Associations

StaffMemberstaffNamestaff#staffStartDate

ClientcompanyAddresscompanyEmailcompanyFaxcompanyNamecompanyTelephone

1 0..*liaises withcontactperson

ClientList

Nameof the

association

MultiplicityA staff member has

zero or more clients onHis/her clientList

MultiplicityA client has

exactly one staffmemberas a contact person

DirectionThe “liaises with”

association should beread in this direction

RoleThe clients’ role

in this associationis as a clientList

RoleThe staffmember’s

role in this associationis as a contact person

Page 11: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Multiplicity

• Optional (0 or 1) 0..1• Exactly one 1 (alternative: 1..1)• Zero or more 0..* (alternative: *)• One or more 1..*

Page 12: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Aggregation and Composition• Aggregation

• This is the “Has-a” or “Whole/part” relationship

• Composition• Strong form of aggregation that implies ownership:

• if the whole is removed from the model, so is the part• the whole is responsible for the disposition of its parts

12

composition

aggregation

Page 13: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

GeneralisationA superclass

Two subclasses

Superclass associations are inherited by subclasses• Sub-classes inherit attributes,

associations, & operations from the superclass

• A sub-class may override an inherited aspect

• Super-classes may be declared {abstract}, meaning they have no instances• Implies that the sub-classes cover all possibilities

Page 14: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Class Diagram

aggregation

AggregationThis is the “Has-a” or “Whole/part”relationship

CompositionStrong form of aggregation that implies ownership:

if the whole is removed from the model, so is the partthe whole is responsible for the disposition of its parts

Can be used to model the domain structure, i.e. concepts and their properties and relationships

Page 15: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Structure of Lecture 04

• Preliminaries• UML Class Diagrams

• Domain Analysis and Modelling Example• Identifying Concepts (Responsibilities)• Concept Attributes• Concept Associations

Page 16: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Domain Models

• Captures the most important concepts of the domain and their associations• The domain is the background knowledge of the

users of the system, e.g. the domain of the librarian includes books, loans, returns, patrons, …

• Helps us to understand and think about the concepts we will use in the project

• Provides a useful “glossary” for the project

Page 17: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Elements of a Domain Model• The following elements enable us to express time

invariant static business rules for a domain:• Domain classes – each domain class denotes a concept (type of

object).• Attributes – an attribute is the description of a named slot of a specified

type in a domain class; each instance of the class separately holds a value.

• Associations – an association is a relationship between two (or more) domain classes that describes links between their object instances. Associations can have roles, describing the multiplicity and participation of a class in the relationship.

Page 18: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Simple Domain Model Example

Domain class

AttributeAssociation

Role

Companyname

Personfirst name : Stringlast name : Stringsalary 0..11..*

Cartypemodel name

*

+employer+employee

+owner

1..* 0..1

*

<<Rule>>If a person is not employed by a company then they do not have a car.

Page 19: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

What are Domain Classes?• Each domain class denotes a concept.

• Concept = Descriptor for a set of things that share common properties.

• Domain Classes can be:• Business objects - things that are manipulated in the business e.g.

Order.• Real world objects - things that the business keeps track of e.g.

Contract, Site.• Actors/Workers/Persons - e.g. Controller and Customer.• Events that transpire - e.g. Sale and Payment.

• A domain class has attributes and associations with other classes.

Page 20: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

How to create a Domain Model?Perform the following in very short iterations:

• Make a list of candidate domain classes.• Draw these classes in a UML class diagram.• If possible, add brief descriptions for the classes.• Identify any associations that are necessary.• Decide whether some domain classes are really just attributes.• Where helpful, identify role names and multiplicity for associations.• Add any additional static rules as UML notes that cannot be conveyed

with UML symbols.• Group diagrams/domain classes by category into packages.• Concentrate more on just identifying domain classes in early iterations!

Page 21: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

How to identify Domain Classes?• An obvious way to identify domain classes is

to identify nouns and phrases in textual descriptions of a domain.

Consider a use case description as follows:1. Customer arrives at a checkout with goods and/or services

to purchase.2. Cashier starts a new sale.3. Cashier enters item identifier.4. System records the sale line item and presents the item

description, price and running total.

Class or Attribute?

Page 22: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Example: ATM Machine

(b)

(a)

12 34 5 67 8 90

12 34 5 67 8 90

Actor(Bank

customer)

System

Actor(Remote

datacenter)(ATM machine)

Concept 2

Concept 1

Actor

Concept 3

Concept n

Domain Model

Actor

Page 23: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Page 24: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Identifying Concepts (Domain Classes)from noun phrases

• Vision and Scope, Glossary and Use Cases are good for this type of linguistic analysis

• However:• Words may be ambiguous or synonymous• Noun phrases may be attributes or parameters

rather than classes:• If it stores state information or it has multiple behaviors,

then it’s a class• If it’s just a number or a string, then it’s probably

an attribute

Page 25: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

How to identify Attributes ?A domain class sounds like an attribute if …• It relies on an associated class for it’s identity – e.g.

‘order number’ class associated to an ‘order’ class. • The ‘order number’ sounds suspiciously like an attribute of

‘order’.

• It is a simple data type – e.g. ‘order number’ is a simple integer. • Now it really sounds like an attribute!

Page 26: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Building a Domain ModelStep 1: Identifying the boundary concepts

Step 2: Identifying the internal concepts

Actor A

Actor B Actor D

Actor C

Boundary concepts

Concept 2Concept 2

Concept 3Concept 3

Concept 4Concept 4

Concept 1Concept 1

Actor A

Actor B

Actor C

Actor D

Concept 1Concept 1

Concept 2Concept 2

Internalconcepts

Concept 3Concept 3

Concept 5Concept 5

Concept 4Concept 4

Concept 6Concept 6

Page 27: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Domain Modelling Strategies for Concept Identification

• ’Outside-In’Approach: First identify boundaryconcepts, then internal concepts• Internal concepts

might be further classified into control and entityconcepts

• ’Setting-up-an-enterprise’Approach: What workers need to be hired and what thingsacquired?• Start with ’worker’ concepts and

their responsibilities• Usually (at least) one ’Controller’

• Distinguish between ’doing’ (D) and ’knowing’ (K) responsibilities• Usually: D=worker and K=thing; but

not always clear

Page 28: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Use Cases vs. Domain Model

(b)(a)

In use case analysis, we consider the system as a “black box”

Use Case 1

Use Case 2

Use Case NActor

System

Actors

Use Case 1

Use Case 2

Use Case NActor

System

Actors

Actor

Domain Model

Actors

Actor

Domain Model

Actors

In domain analysis, we consider the system as a “transparent box”

Page 29: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Use Case Diagrams UC1: UnlockUC2: LockUC3: AddUserUC4: RemoveUserUC5: InspectAccessHistoryUC6: SetDevicePrefsUC7: AuthenticateUserUC8: Login

«participate»

«initiate + participate»

«participate»

«participate»

«participate»

«participate»

First tier use cases Second tier use casessystem

boundary

communication

«include»

use case

«initiate»

«initiate»

Timer

LightSwitch

LockDevice

«initiate»

Tenant

Landlord

actor

«initiate»

UC1: Unlock

UC2: Lock

UC7: AuthenticateUser

Account Management Subsystem

«initiate»

Tenant

Landlord«include»

«include»«participate»

«initiate»«inc

lude»

«include»

«initiate»

«initiate»

UC8: Login

UC4: RemoveUser

UC6: SetDevicePrefs

UC3: AddUser

UC5: InspectAccessHistory

Subsystem 1: Device Control

Subsystem 2: Account Management

Page 30: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Use Case 1: UnlockUse Case UC-1: Unlock

Related Requirements: REQ1, REQ3, REQ4, and REQ5 stated in Table 2-1

Initiating Actor: Any of: Tenant, Landlord

Actor’s Goal: To disarm the lock and enter, and get space lighted up automatically.

Participating Actors: LockDevice, LightSwitch, Timer

Preconditions:• The set of valid keys stored in the system database is non-empty.• The system displays the menu of available functions; at the door keypad the menu choicesare “Lock” and “Unlock.”

Postconditions: The auto-lock timer has started countdown from autoLockInterval.

Flow of Events for Main Success Scenario:

→ 1. Tenant/Landlord arrives at the door and selects the menu item “Unlock”2. include::AuthenticateUser (UC-7)

← 3. System (a) signals to the Tenant/Landlord the lock status, e.g., “disarmed,” (b) signals to LockDevice todisarm the lock, and (c) signals to LightSwitch to turn the light on

← 4. System signals to the Timer to start the auto-lock timer countdown

→ 5. Tenant/Landlord opens the door, enters the home [and shuts the door and locks]

Page 31: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Example NL Requirements

Identifier Priority Requirement

REQ1 5The system shall keep the door locked at all times, unless commanded otherwise by authorized user. When the lock is disarmed, a countdown shall be initiated at the end of which the lock shall be automatically armed (if still disarmed).

REQ2 2 The system shall lock the door when commanded by pressing a dedicated button.REQ3 5 The system shall, given a valid key code, unlock the door and activate other devices.

REQ4 4The system should allow mistakes while entering the key code. However, to resist “dictionary attacks,” the number of allowed failed attempts shall be small, say three, after which the system will block and the alarm bell shall be sounded.

REQ5 2 The system shall maintain a history log of all attempted accesses for later review.REQ6 2 The system should allow adding new authorized persons at runtime or removing existing ones.

REQ7 2 The system shall allow configuring the preferences for device activation when the user provides a valid key code, as well as when a burglary attempt is detected.

REQ8 1The system should allow searching the history log by specifying one or more of these parameters: the time frame, the actor role, the door location, or the event type (unlock, lock, power failure, etc.). This function shall be available over the Web by pointing a browser to a specified URL.

REQ9 1 The system should allow filing inquiries about “suspicious” accesses. This function shall be available over the Web.

Page 32: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Extracting the Responsibilities

Responsibility Description Type Concept Name

Coordinate actions of all concepts associated with a use case, a logical grouping of usecases, or the entire system and delegate the work to other concepts. D Controller

Container for user’s authentication data, such as pass-code, timestamp, dooridentification, etc. K Key

Verify whether or not the key-code entered by the user is valid. D KeyChecker

Container for the collection of valid keys associated with doors and users. K KeyStorage

Operate the lock device to armed/disarmed positions. D LockOperator

Operate the light switch to turn the light on/off. D LightOperator

Operate the alarm bell to signal possible break-ins. D AlarmOperator

Block the input to deny more attempts if too many unsuccessful attempts. D Controller

Log all interactions with the system in persistent storage. D Logger

[Note: Incomplete,e.g., ’Timer’ missing ...]

Page 33: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Domain Model (1a)

«entity»KeyChecker

«control»Controller

«entity»Key

«entity»KeyStorage

Symbolizes“worker”-typeconcept.

«boundary»KeycodeEntry

«boundary»StatusDisplay

Resident

Symbolizes“thing”-typeconcept.

Symbolizes“thing”-typeconcept.

LockDevice

LightSwitch

«boundary»HouseholdDeviceOperator

Domain concepts for subsystem #1 of safe home access

[Note: Incomplete, e.g., Logger, Timer missing ...]

Page 34: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Domain Model (1b)

«boundary»LockOperator

«boundary»HouseholdDeviceOperator

«boundary»MusicPlayerOperator

«boundary»LightOperator

«boundary»AlarmOperator

Page 35: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Extracting AssociationsConcept pair Association description Association name

Controller ↔ StatusDisplay Controller sends current status of locks etc. to StatusDisplay for display ...

Controller ↔ KeycodeEntry KeycodeEntry device reads Input and sends it to Controller for further processing ...

Key ↔ Controller Controller obtains Key based on Input and metadata (door, time) obtains

KeyChecker ↔Controller Controller sends Key for checking to KeyChecker and receives check result for further action conveys requests

KeyStorage ↔ KeyChecker KeyChecker retrieves valid keys from KeyStorage for comparison with Key retrieves valid keys

Key ↔ KeyChecker KeyChecker verifies Key verifies

HouseholdDeviceOperator ↔Controller

Controller activates Devices through requests to HouseholdDeviceOperator conveys requests

… … ...

Page 36: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Domain Model (2a)Domain model for UC-1: Unlock

«control»Controller

numOfAttemptsmaxNumOfAttempts

«entity»KeyChecker

«entity»Key

userIdentityCodetimestampdoorLocation

«entity»KeyStorage

conv

eys

requ

ests

verifies

retrieves valid keys

“Reading direction arrow.”Has no meaning; it only helps readingthe association label, and is often left out.

«boundary»KeycodeEntry

«boundary»StatusDisplay

Resident

LockDevice

LightSwitch

Associationname

conveys requests «boundary»HouseholdDeviceOperator

deviceStatuses

obtains Attributes

«control»Controller

numOfAttemptsmaxNumOfAttempts

«control»Controller

numOfAttemptsmaxNumOfAttempts

«entity»KeyChecker

«entity»KeyChecker

«entity»Key

userIdentityCodetimestampdoorLocation

«entity»KeyStorage

«entity»KeyStorage

conv

eys

requ

ests

verifies

retrieves valid keys

“Reading direction arrow.”Has no meaning; it only helps readingthe association label, and is often left out.

“Reading direction arrow.”Has no meaning; it only helps readingthe association label, and is often left out.

«boundary»KeycodeEntry

«boundary»StatusDisplay

Resident

LockDevice

LightSwitch

Associationname

conveys requests «boundary»HouseholdDeviceOperator

deviceStatuses

obtains Attributes

Associations: who needs to work together, not how they work together

Concept pair | Association description | Association name

values, e.g.:activated, stopped

Page 37: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Extracting AttributesConcept Attributes Attribute Description

ControllernumOfAttempts Used to determine whether another

attempt is allowed

maxNumOfAttempts Used to limit the retry attempts

HouseholdDeviceOperator deviceStatuses On, off, etc.

Key

userIdentityCode Personal code of the residenttimestamp Allows for tracking history

doorLocation Allows possibility of different codes fordoors and also relevant for tracking history

KeyChecker … …

... … …

Page 38: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

More examples with explanation can be foundin the Textbook

Page 39: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Simple examples of domain modeling

• Course management and POS• http://stg-tud.github.io/eise/WS11-EiSE-07-

Domain_Modeling.pdf• Bank accounts

• http://documentation.genesez.org/javaee/de.genesez.uml.modeling.domain.html

Page 40: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

POS system

ProcessSale: A customer arrives at a checkout with items to purchase. The cashier uses the POS system to record each item. The system presents a running total and line- item details. The customer enters payment information, which the system validates and records. The system updates the inventory. The customer receives a receipt from the system and then leaves the store with the items.

Page 41: MTAT.03.094 Software Engineering - ut · Client companyAddress companyEmail ... • UML Class Diagrams • Domain Analysis and Modelling Example ... users of the system, ...

MTAT.03.094 / Lecture 04 / © Dietmar Pfahl 2016

Next Lecture

• Date/Time:• Friday, 30-Sep, 10:15-12:00

• Topic: • Development Infrastructure I (by Sander Soo,

Nortal)• For you to do:

• Remember that all team members must be present in next week’s lab sessions (assessment of Lab task 1 solutions)!

• Work on Lab 2 homework assignment