SlideShare a Scribd company logo
UML
Sectionsof thispresentation wereadapted from Martin Fowler UML Distilled: A
Brief Guideto theStandard Object Modeling Language, 3rd Edition
History
Design notation of variouskindsused since
programming began:
• Flow charts, Pseudo code, StructureDiagrams…
With advent of OO, many conflicting notations
(1980s, 1990s)
Thesenotationswerecombined and unified (late
1990’s)
UML extensively taught in universities
(2000 - now).
UML: Unified Modeling Language
An industry-standard graphical languagefor specifying,
visualizing, constructing, and documenting theartifactsof
softwaresystems, aswell asfor businessmodeling.
TheUML usesmostly graphical notationsto expressthe
OO analysisand design of softwareprojects. 
Simplifiesthecomplex processof softwaredesign
UML can beused to describe:
 theorganization of aprogram
 how aprogram executes
 how aprogram isused
 how aprogram isdeployed over anetwork
 …and more
What is UML?
Why UMLforModeling?
A diagram/picture= thousandswords
Usesgraphical notation to communicatemoreclearly than
natural language(imprecise) and code(too detailed).
Makesit easier for programmersand softwarearchitectsto
communicate.
Helpsacquirean overall view of asystem.
UML isno t dependent on any onelanguageor technology.
UML movesusfrom fragmentation to standardization.
3 Waysto UseUML
(Both forward & reverseengineering)
1) Sketch e.g. at white board
1) Most common, quick and informal
2) Communication & understanding
2) Blueprint
1) Detailed design, implemented by programmer
2) May havetoolssupporting diagramming
3) Programming Language
1) Toolstranslatediagramsto executablecode
During Software Lifecycle:
UMLCan Be Used at Various Stages
Analysis: OOA
• What issystem to do? What servicesisit to provide? Provide
requirementsfor designer.
Design: OOD
• What will betheparts& structureof thesystem? How will
they interact? Provideblueprint for programmer.
Programming: OOP
Classification of UMLDiagrams
Structure
1) Class diagram
2) Component diagram (cmptscan beindependently
purchased and replaced)
3) Component structurediagram
4) Deployment diagram (what goeson what machine&
place)
5) Object diagram
6) Packagediagram (pkg = group of classes, e.g.
namespace)
There are 13 + Kinds of UMLDiagrams
Classification of UMLDiagrams
(cont.)
Behavior
7) Activity diagram (flow chart)
8) Use Case diagram (scenarios foruse of system)
9) StateMachinediagram
10) Sequence diagram
11) Communication diagram (dataflow diagrams)
12) Interaction diagram (activity + sequencediagrams)
13) Timing diagram
Class Diagrams
Class diagrams
A classdiagram isoften all that isneeded to describea
particular Design Pattern
A classdiagram showsclasses, interfaces, and their
relationships
We’ll cover most of classesand interfaces, and afew of the
most important relationships
Thepurposeof theclassdiagram isto show thetypesbeing
modeled within thesystem.
10
"classifiers."
UML modelstypesmay include:
aclass
an interface
adatatype
acomponent.
Class
Class Name
Attribute : type
Operation (arg list) : return type
Abstract operation
Various parts are optional
Example UMLClass Diagram
13
http://www.ibm.com/ -http://www.ibm.com/developerworks/rational/library/content/RationalEdge/sep04/bell/bell_fig5.jpg
Instance Specification
(Object)
ObjectName: Class Name
Attribute : type
Operation (arg list) : return
type
Abstract operation
Various parts are optional
An example of Class
Account_Name
- Custom_Name
- Balance
+AddFunds( )
+WithDraw( )
+PayInvoice( )
Name
Attributes
Operations
Class Example
class Checking {
private:
char Customer_name[20];
float Balance;
public:
AddFunds(float);
WithDraw(float);
PayInvoice(float);
set_name(string);
get_name();
set_balance(float);
get_balance();
};
Relationships between Class
Diagrams
Association-- arelationship between instancesof thetwo classes. There
isan association between two classesif an instanceof oneclassmust know
about theother in order to perform itswork. In adiagram, an association is
alink connecting two classes.
Aggregation-- an association in which oneclassbelongsto acollection.
An aggregation hasadiamond end pointing to thepart containing the
whole.
Generalization-- an inheritancelink indicating oneclassisasuperclass
of theother. A generalization hasatrianglepointing to thesuperclass.
17
Notation of Class Diagram: association
Bi-directional association
Associationsareassumed to bebi-directional
e.g. Flight and plane
notation:
Uni-directional association
e.g. Order and item
notation:
Associations represent relationships between instances
of classes .
Association: Multiplicity and Roles
University Person
1
1
*
*
Multiplicity
Symbol Meaning
1 One and only one
0..1 Zero or one
M..N From M to N (natural language)
* From zero to any positive integer
0..* From zero to any positive integer
1..* From one to any positive integer
0…8.. From zero to eight
8..14 From eight to fourteen
teacheremployer
RoleRole
“A given university groups many
people; some act as students, others
as teachers. A given student
belongs to a single university; A
given staff belongs to a single
university; a given teacher may or
may not be working for the university
at a particular time.”
student
staff
*
0..1
Notation of Class Diagram: Aggregation
AGGREGATION
Aggregation: expresses a relationship among
instances
of related classes.
Containee Classes
Flat
Rooms Storage Room
Example 1
Containee Classes
Car
Motor Wheels
Example2
AGGREGATION
41
Generalization
(Inheritance)
Supertype
Subtype 1 Subtype 2
Generalization expresses a relationship among related classes. It is a
class that includes its subclasses.
Generalization Example
http://www.ibm.com/developerworks/rational/library/content/RationalEdge/sep04/bell/bell_fig10.gif
Elements of Sequence Diagrams
Name: Class
New object
Create
Message
Return
Delete
Self-call
Lifelines
The dotted line that extends down the
vertical axis from the base of each object.
Messages
Labeled as arrows, with the arrowhead
indicating the direction of the call.
Activation bar
The long, thin boxes on the lifelines are
method-invocation boxes indicting that
indicate processing is being performed by
the target object/class to fulfill a message.
Rectangle also denotes when object is
deactivated.
Deletion (X)
Object’s life ends at that point
Activation bar
Sequence Diagrams
Example forSequence Diagram
[Fowler]
Wehavean order and aregoing to invokeacommand on it to
calculateitsprice. To do that, theorder needsto look at all theline
itemson theorder and determinetheir prices, which arebased on
thepricing rulesof theorder line’sproducts. Having donethat for
all thelineitems, theorder then needsto computean overall
discount, which isbased on rulestied to thecustomer.
Example forSequence Diagram
[Fowler]
Wehavean order and aregoing to invokeacommand on it
to calculateitsprice. To do that, theorder needsto look at
all thelineitemson theorder and determinetheir prices,
which arebased on thepricing rulesof theorder line’s
products. Having donethat for all thelineitems, theorder
then needsto computean overall discount, which isbased
on rulestied to thecustomer.
Example Sequence Diagram
anOrder anOrderLine aProduct aCustomer
calculatePrice
getQuantity
getProduct
getPricingDetails
getBasePrice
calculateDiscounts
getDiscountInfo
aProductFound
message
Participant Lifeline
Return
Activation
Self call
Message
Operations
Object: Class
Message
USECASES DIAGRAM
Use cases. A usecasedescribesasequenceof actionsthat provide
something of measurablevalueto an actor and isdrawn asa
horizontal ellipse.
Actors. An actor isaperson, organization, or external system that
playsarolein oneor moreinteractionswith your system. Actorsare
drawn asstick figures
Website Administration
Who managesthewebsite?
What typeof different rolesof admin and help desk have
Website Administration
g
www.uml-diagrams.or
Business Use Case Diagram forAirport Check-
In and Security Screening
Business actors :?
Business use cases ?
PLEASE DISCUSS AND EXPLAIN WHY?
Business Use Case Diagram forAirport Check-
In and Security Screening
Business actors :Passenger,
Tour Guide,
Minor (Child),
Passenger with Special Needs
(all playing external rolesin relation to airport
business.)
Business use cases are
 Individual Check-In,
 Group Check-In (for groupsof
tourists),
 Security Screening
Baggage Check-in and
Baggage Handling extend Check-In usecases, WHY?
Business Use Case Diagram forAirport Check-
In and Security Screening
Activity Diagram
Activity diagram isused to show message
flow from oneactivity to another.
Activity Diagrams:
Draw theactivity flow of asystem.
Describethesequencefrom oneactivity
to another.
Describetheparallel, branched and
concurrent flow of thesystem.
http://www.sparxsystems.com/resources/uml2_tutorial/uml2_activitydiagram.html
An initial or start node Activity final node
Object
Decision Node
Fork/Branch and Join
Nodes
Merger
Node

More Related Content

PPTX
Cs 1023 lec 10 uml (week 3)
PPT
Introduction To Uml
PPTX
PDF
4 (uml basic)
PDF
UML - An Introduction
PDF
UML - Unified Modelling Language
PPT
analysis and design with uml
PPTX
An introduction to uml
Cs 1023 lec 10 uml (week 3)
Introduction To Uml
4 (uml basic)
UML - An Introduction
UML - Unified Modelling Language
analysis and design with uml
An introduction to uml

What's hot (20)

PPT
Uml unified-modeling-language-presented by dileep
PDF
Unified Modeling Language
PPTX
UML Diagram @ Software engineering discussion
PPT
UML Diagrams
PPT
Uml - An Overview
PPTX
Uml Diagrams
PPTX
The Ultimate Sequence Diagram Tutorial
PPT
PPT
M02 Uml Overview
PPTX
Class diagram, use case and sequence diagram
PPTX
What is UML (Unified Modeling Language)?
PPT
Uml diagrams
PPT
Intro Uml
PPTX
An Automatic Approach to Translate Use Cases to Sequence Diagrams
PDF
PPT
34. uml
PPT
PDF
Software Engineering :Behavioral Modelling - II State diagram
DOCX
Behavioural modelling
Uml unified-modeling-language-presented by dileep
Unified Modeling Language
UML Diagram @ Software engineering discussion
UML Diagrams
Uml - An Overview
Uml Diagrams
The Ultimate Sequence Diagram Tutorial
M02 Uml Overview
Class diagram, use case and sequence diagram
What is UML (Unified Modeling Language)?
Uml diagrams
Intro Uml
An Automatic Approach to Translate Use Cases to Sequence Diagrams
34. uml
Software Engineering :Behavioral Modelling - II State diagram
Behavioural modelling
Ad

Viewers also liked (20)

PDF
OOAD chapter 1
PDF
Stevecook uml mdday2010
PPTX
Open Data Innovation from GEO DATA Perspective
PPT
Fast Prototyping Customer Development Mock Ups 2014
PDF
Data Privacy, Corporates and States
PPT
Project Integration Management
PPTX
Start up finance & venture capital
PPT
Project Scope Management
PPT
Introducing Uml And Development Process
PPTX
Project Cost Management
PPTX
Project Quality Management
PPTX
Busıness Model Innovation Business Model Canvas Toolbox 2016
PPTX
Introduction to OPEN INNOVATION
PPTX
Organization Structure - stake holder -human resources management during proj...
PPTX
Project Time Management
PPTX
UML (Unified Modeling Language)
PPTX
Introduction to Entrepreneurship , Entrepreneurship in Action, KTH
PDF
Unified Modeling Language (UML), Object-Oriented Programming Concepts & Desig...
PPTX
Innovation & Business Model & Business Model Canvas 2014
PPTX
Uml Presentation
OOAD chapter 1
Stevecook uml mdday2010
Open Data Innovation from GEO DATA Perspective
Fast Prototyping Customer Development Mock Ups 2014
Data Privacy, Corporates and States
Project Integration Management
Start up finance & venture capital
Project Scope Management
Introducing Uml And Development Process
Project Cost Management
Project Quality Management
Busıness Model Innovation Business Model Canvas Toolbox 2016
Introduction to OPEN INNOVATION
Organization Structure - stake holder -human resources management during proj...
Project Time Management
UML (Unified Modeling Language)
Introduction to Entrepreneurship , Entrepreneurship in Action, KTH
Unified Modeling Language (UML), Object-Oriented Programming Concepts & Desig...
Innovation & Business Model & Business Model Canvas 2014
Uml Presentation
Ad

Similar to UML Basics (20)

PPTX
UML_Lecture.pptxnd bfdjjrnekdddkeeeenekejneje
PDF
UML Overview and Introduction functions.pdf
PPT
Uml lecture
PPT
umlpresentation-140519151641-phpapp02.ppt
PPT
Fundamentals of Software Engineering
PDF
UML, ER and Dimensional Modelling
PPT
Selab1 slides
PPTX
UML tutorial
PPTX
UML Chart Designing Methods - Lecture.pptx
PPT
Uml(unified modeling language) Homework Help
PPT
UML Introduction The system development life cycle (SDLC) is a complex projec...
PPTX
1. introduction to uml
PPT
PPT
uml.ppt
PPTX
Overview of UML Diagrams
PPT
Uml report
PPT
Chapter 2-Unified Modeling Languagee.ppt
PPT
Chapter 2-Unified Modeling Languagee.ppt
PPTX
UML diagram is a process that Provide a great Knowledge
PPT
UML_Lecture.pptxnd bfdjjrnekdddkeeeenekejneje
UML Overview and Introduction functions.pdf
Uml lecture
umlpresentation-140519151641-phpapp02.ppt
Fundamentals of Software Engineering
UML, ER and Dimensional Modelling
Selab1 slides
UML tutorial
UML Chart Designing Methods - Lecture.pptx
Uml(unified modeling language) Homework Help
UML Introduction The system development life cycle (SDLC) is a complex projec...
1. introduction to uml
uml.ppt
Overview of UML Diagrams
Uml report
Chapter 2-Unified Modeling Languagee.ppt
Chapter 2-Unified Modeling Languagee.ppt
UML diagram is a process that Provide a great Knowledge

More from Serdar Temiz (13)

PPTX
Business Model Canvas 2015
PDF
Customer Development Fast Protyping
PDF
Introduction to Entepreneurship ME2603 KTH
PDF
How Open Data Changes Our Life?
PPTX
Project Risk Management (10)
PPTX
Project Procurement Management
PPTX
Project Management Introduction General PM lifecycles
PDF
Open Data for Digital Activism and Civic Engegament
PPTX
Introduction to OKFN
PPTX
Business model canvas 2013
PPTX
Open Data Open Innovation
PDF
Fast prototypes and customer development for start ups
PDF
Entepreneurship for engineers
Business Model Canvas 2015
Customer Development Fast Protyping
Introduction to Entepreneurship ME2603 KTH
How Open Data Changes Our Life?
Project Risk Management (10)
Project Procurement Management
Project Management Introduction General PM lifecycles
Open Data for Digital Activism and Civic Engegament
Introduction to OKFN
Business model canvas 2013
Open Data Open Innovation
Fast prototypes and customer development for start ups
Entepreneurship for engineers

Recently uploaded (20)

PPTX
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PDF
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
PPTX
CH1 Production IntroductoryConcepts.pptx
PPT
Project quality management in manufacturing
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PPTX
Welding lecture in detail for understanding
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PPTX
OOP with Java - Java Introduction (Basics)
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PDF
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
PPTX
Construction Project Organization Group 2.pptx
PPT
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
PPTX
bas. eng. economics group 4 presentation 1.pptx
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PPTX
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
Operating System & Kernel Study Guide-1 - converted.pdf
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
Model Code of Practice - Construction Work - 21102022 .pdf
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
CH1 Production IntroductoryConcepts.pptx
Project quality management in manufacturing
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
Welding lecture in detail for understanding
CYBER-CRIMES AND SECURITY A guide to understanding
OOP with Java - Java Introduction (Basics)
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
Construction Project Organization Group 2.pptx
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
bas. eng. economics group 4 presentation 1.pptx
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx

UML Basics

  • 1. UML Sectionsof thispresentation wereadapted from Martin Fowler UML Distilled: A Brief Guideto theStandard Object Modeling Language, 3rd Edition
  • 2. History Design notation of variouskindsused since programming began: • Flow charts, Pseudo code, StructureDiagrams… With advent of OO, many conflicting notations (1980s, 1990s) Thesenotationswerecombined and unified (late 1990’s) UML extensively taught in universities (2000 - now).
  • 3. UML: Unified Modeling Language An industry-standard graphical languagefor specifying, visualizing, constructing, and documenting theartifactsof softwaresystems, aswell asfor businessmodeling. TheUML usesmostly graphical notationsto expressthe OO analysisand design of softwareprojects.  Simplifiesthecomplex processof softwaredesign UML can beused to describe:  theorganization of aprogram  how aprogram executes  how aprogram isused  how aprogram isdeployed over anetwork  …and more What is UML?
  • 4. Why UMLforModeling? A diagram/picture= thousandswords Usesgraphical notation to communicatemoreclearly than natural language(imprecise) and code(too detailed). Makesit easier for programmersand softwarearchitectsto communicate. Helpsacquirean overall view of asystem. UML isno t dependent on any onelanguageor technology. UML movesusfrom fragmentation to standardization.
  • 5. 3 Waysto UseUML (Both forward & reverseengineering) 1) Sketch e.g. at white board 1) Most common, quick and informal 2) Communication & understanding 2) Blueprint 1) Detailed design, implemented by programmer 2) May havetoolssupporting diagramming 3) Programming Language 1) Toolstranslatediagramsto executablecode
  • 6. During Software Lifecycle: UMLCan Be Used at Various Stages Analysis: OOA • What issystem to do? What servicesisit to provide? Provide requirementsfor designer. Design: OOD • What will betheparts& structureof thesystem? How will they interact? Provideblueprint for programmer. Programming: OOP
  • 7. Classification of UMLDiagrams Structure 1) Class diagram 2) Component diagram (cmptscan beindependently purchased and replaced) 3) Component structurediagram 4) Deployment diagram (what goeson what machine& place) 5) Object diagram 6) Packagediagram (pkg = group of classes, e.g. namespace) There are 13 + Kinds of UMLDiagrams
  • 8. Classification of UMLDiagrams (cont.) Behavior 7) Activity diagram (flow chart) 8) Use Case diagram (scenarios foruse of system) 9) StateMachinediagram 10) Sequence diagram 11) Communication diagram (dataflow diagrams) 12) Interaction diagram (activity + sequencediagrams) 13) Timing diagram
  • 10. Class diagrams A classdiagram isoften all that isneeded to describea particular Design Pattern A classdiagram showsclasses, interfaces, and their relationships We’ll cover most of classesand interfaces, and afew of the most important relationships Thepurposeof theclassdiagram isto show thetypesbeing modeled within thesystem. 10
  • 11. "classifiers." UML modelstypesmay include: aclass an interface adatatype acomponent.
  • 12. Class Class Name Attribute : type Operation (arg list) : return type Abstract operation Various parts are optional
  • 13. Example UMLClass Diagram 13 http://www.ibm.com/ -http://www.ibm.com/developerworks/rational/library/content/RationalEdge/sep04/bell/bell_fig5.jpg
  • 14. Instance Specification (Object) ObjectName: Class Name Attribute : type Operation (arg list) : return type Abstract operation Various parts are optional
  • 15. An example of Class Account_Name - Custom_Name - Balance +AddFunds( ) +WithDraw( ) +PayInvoice( ) Name Attributes Operations
  • 16. Class Example class Checking { private: char Customer_name[20]; float Balance; public: AddFunds(float); WithDraw(float); PayInvoice(float); set_name(string); get_name(); set_balance(float); get_balance(); };
  • 17. Relationships between Class Diagrams Association-- arelationship between instancesof thetwo classes. There isan association between two classesif an instanceof oneclassmust know about theother in order to perform itswork. In adiagram, an association is alink connecting two classes. Aggregation-- an association in which oneclassbelongsto acollection. An aggregation hasadiamond end pointing to thepart containing the whole. Generalization-- an inheritancelink indicating oneclassisasuperclass of theother. A generalization hasatrianglepointing to thesuperclass. 17
  • 18. Notation of Class Diagram: association Bi-directional association Associationsareassumed to bebi-directional e.g. Flight and plane notation: Uni-directional association e.g. Order and item notation: Associations represent relationships between instances of classes .
  • 19. Association: Multiplicity and Roles University Person 1 1 * * Multiplicity Symbol Meaning 1 One and only one 0..1 Zero or one M..N From M to N (natural language) * From zero to any positive integer 0..* From zero to any positive integer 1..* From one to any positive integer 0…8.. From zero to eight 8..14 From eight to fourteen teacheremployer RoleRole “A given university groups many people; some act as students, others as teachers. A given student belongs to a single university; A given staff belongs to a single university; a given teacher may or may not be working for the university at a particular time.” student staff * 0..1
  • 20. Notation of Class Diagram: Aggregation AGGREGATION Aggregation: expresses a relationship among instances of related classes. Containee Classes Flat Rooms Storage Room Example 1 Containee Classes Car Motor Wheels Example2 AGGREGATION 41
  • 21. Generalization (Inheritance) Supertype Subtype 1 Subtype 2 Generalization expresses a relationship among related classes. It is a class that includes its subclasses.
  • 23. Elements of Sequence Diagrams Name: Class New object Create Message Return Delete Self-call Lifelines The dotted line that extends down the vertical axis from the base of each object. Messages Labeled as arrows, with the arrowhead indicating the direction of the call. Activation bar The long, thin boxes on the lifelines are method-invocation boxes indicting that indicate processing is being performed by the target object/class to fulfill a message. Rectangle also denotes when object is deactivated. Deletion (X) Object’s life ends at that point Activation bar Sequence Diagrams
  • 24. Example forSequence Diagram [Fowler] Wehavean order and aregoing to invokeacommand on it to calculateitsprice. To do that, theorder needsto look at all theline itemson theorder and determinetheir prices, which arebased on thepricing rulesof theorder line’sproducts. Having donethat for all thelineitems, theorder then needsto computean overall discount, which isbased on rulestied to thecustomer.
  • 25. Example forSequence Diagram [Fowler] Wehavean order and aregoing to invokeacommand on it to calculateitsprice. To do that, theorder needsto look at all thelineitemson theorder and determinetheir prices, which arebased on thepricing rulesof theorder line’s products. Having donethat for all thelineitems, theorder then needsto computean overall discount, which isbased on rulestied to thecustomer.
  • 26. Example Sequence Diagram anOrder anOrderLine aProduct aCustomer calculatePrice getQuantity getProduct getPricingDetails getBasePrice calculateDiscounts getDiscountInfo aProductFound message Participant Lifeline Return Activation Self call Message Operations Object: Class Message
  • 27. USECASES DIAGRAM Use cases. A usecasedescribesasequenceof actionsthat provide something of measurablevalueto an actor and isdrawn asa horizontal ellipse. Actors. An actor isaperson, organization, or external system that playsarolein oneor moreinteractionswith your system. Actorsare drawn asstick figures
  • 28. Website Administration Who managesthewebsite? What typeof different rolesof admin and help desk have
  • 30. Business Use Case Diagram forAirport Check- In and Security Screening Business actors :? Business use cases ? PLEASE DISCUSS AND EXPLAIN WHY?
  • 31. Business Use Case Diagram forAirport Check- In and Security Screening Business actors :Passenger, Tour Guide, Minor (Child), Passenger with Special Needs (all playing external rolesin relation to airport business.) Business use cases are  Individual Check-In,  Group Check-In (for groupsof tourists),  Security Screening Baggage Check-in and Baggage Handling extend Check-In usecases, WHY?
  • 32. Business Use Case Diagram forAirport Check- In and Security Screening
  • 33. Activity Diagram Activity diagram isused to show message flow from oneactivity to another. Activity Diagrams: Draw theactivity flow of asystem. Describethesequencefrom oneactivity to another. Describetheparallel, branched and concurrent flow of thesystem.
  • 34. http://www.sparxsystems.com/resources/uml2_tutorial/uml2_activitydiagram.html An initial or start node Activity final node Object Decision Node Fork/Branch and Join Nodes Merger Node