SlideShare a Scribd company logo
Business Analysis
Training
Introduction to OOA and UML
Page 2Classification: Restricted
Agenda
• Introduction to OOA and UML
• Stated vs Un-stated
• Software Analysis and Design
• Modeling
• UML
• Why UML
• Overview
• Types
• Use Case Diagram
• Types of Actor
• Class Diagram
• What is Class Diagram
• Class Representation
• Types of Class
• Sequence Diagram
• Interaction Diagram
Page 3Classification: Restricted
Introduction
• Object Oriented Analysis and Design is an important skill for Business
Analysts as well as Technical Architects
• The design is dependent on a good analysis
Page 4Classification: Restricted
Why Do We Need Object Oriented
Analysis or a Structured Analysis?
Page 5Classification: Restricted
Software Analysis and Design
Page 6Classification: Restricted
Modeling
• Describing a system at a high level of abstraction
– A model of the system
– Used for requirements and specifications
• Is it necessary to model software systems?
Page 7Classification: Restricted
What is UML?
• UML stands for “Unified Modeling Language”
• It is a industry-standard graphical language for specifying, visualizing,
constructing, and documenting the artifacts of software systems
• The UML uses mostly graphical notations to express the OO analysis and
design of software projects.
• Simplifies the complex process of software design
Page 8Classification: Restricted
Why UML for Modeling
• Use graphical notation to communicate more clearly than natural
language (imprecise) and code(too detailed).
• Help acquire an overall view of a system.
• UML is not dependent on any one language or technology.
• UML moves us from fragmentation to standardization.
Page 9Classification: Restricted
Types of UML Diagrams
• Use Case Diagram
• Class Diagram
• Sequence Diagram
• Collaboration Diagram
• State Diagram
This is only a subset of diagrams … but are most widely used
Page 10Classification: Restricted
Use Case Diagram
• Used for describing a set of user scenarios
• Mainly used for capturing user requirements
• Work like a contract between end user and software developers
Page 11Classification: Restricted
Use Case Diagram (core components)
Actors: A role that a user plays with respect to the system, including human
users and other systems. e.g., inanimate physical objects (e.g. robot); an
external system that needs some information from the current system.
Use case: A set of scenarios that describing an interaction between a user
and a system, including alternatives.
System boundary: rectangle diagram representing the boundary between
the actors and the system.
Page 12Classification: Restricted
Use Case Diagram (core relationship)
Association: communication between an actor and a use case;
Represented by a solid line.
Generalization: relationship between one general use case and a
special use case (used for defining special alternatives)
Represented by a line with a triangular arrow head toward the parent
use case.
Page 13Classification: Restricted
Generalization
Page 14Classification: Restricted
Use Case Diagram (core relationship)
Include: a dotted line labeled <<include>> beginning at base use case and
ending with an arrows pointing to the include use case. The include
relationship occurs when a chunk of behavior is similar across more than one
use case. Use “include” in stead of copying the description of that behavior.
<<include>>
Extend: a dotted line labeled <<extend>> with an arrow toward the base case.
The extending use case may add behavior to the base use case. The base class
declares “extension points”.
<<extend>>
Page 15Classification: Restricted
Use Case Diagram (core relationship)
Page 16Classification: Restricted
Use Case Diagram (core relationship)
Page 17Classification: Restricted
Use Case Diagrams
Library System
Borrow
Order Title
Fine Remittance
Client
Employee
Supervisor
Boundary
Actor
Use Case
Page 18Classification: Restricted
Use Case Diagrams
Page 19Classification: Restricted
Types of Actor
Actors
Primary Actor Secondary Actor
Page 20Classification: Restricted
Types of Actor
Page 21Classification: Restricted
Exercise
Page 22Classification: Restricted
Use Case Specification
Page 23Classification: Restricted
Exercise
Page 24Classification: Restricted
Use Cases for the Exercise
Page 25Classification: Restricted
Actors for the Exercise
Page 26Classification: Restricted
Relationship between the actors
Page 27Classification: Restricted
27
• Object-oriented analysis and design (OOAD) is a technical approach used in
the analysis and design of an application or system through the application
of the object-oriented paradigm and concepts including visual modeling.
• This is applied throughout the development life cycle of the application or
system, fostering better product quality and even encouraging stakeholder
participation and communication
Page 28Classification: Restricted
• Used for describing structure and behavior in the use cases
• Provide a conceptual model of the system in terms of entities and their
relationships
• Used for requirement capture, end-user interaction
• Detailed class diagrams are used for developers
Class diagram
Page 29Classification: Restricted
A collection of similar objects is a class. And an object is an instance of a class.
What is a Class?
Page 30Classification: Restricted
Class representation
• Each class is represented by a rectangle subdivided into three
compartments
• Name
• Attributes
• Operations
• Modifiers are used to indicate visibility of attributes and operations.
• ‘+’ is used to denote Public visibility (everyone)
• ‘#’ is used to denote Protected visibility (friends and derived)
• ‘-’ is used to denote Private visibility (no one)
• By default, attributes are hidden and operations are visible.
Page 31Classification: Restricted
An example of Class
Account_Name
- Customer_Name
- Balance
+addFunds( )
+withDraw( )
+transfer( )
Name
Attributes
Operations
Page 32Classification: Restricted
• Super Class
• Parent Class
• Generalized Class
• Specialized Class
• Sub Class
• Child Class
Types of Classes
Page 33Classification: Restricted
Animal
Amphibian Mammal Reptile
Horse
Example
Child Class
of Animal
Child Class
of Animal
Child Class
of Mammal
Super Class
of horse
Parent Class
of Mammal
Sub Class of
Animal
Page 34Classification: Restricted
OO Relationships
• There are two kinds of Relationships
• Generalization (parent-child relationship)
• Association (one object to another object relationship)
• Associations can be further classified as
• Aggregation
• Composition
Page 35Classification: Restricted
OO Relationships : Generalization
Subtype2
Supertype
Subtype1
• Generalization expresses a
parent/child relationship
among related classes.
• Used for abstracting details in
several layers
Regular
Customer
Loyalty
Customer
Customer
Example
:
Regular
Customer
Loyalty
Customer
Customeror:
Page 36Classification: Restricted
OO Relationships : Association
• Represent relationship between instances of classes
• Student enrolls in a course
• Courses have students
• Courses have exams
• Etc.
• Association has two ends
• Role names (e.g. enrolls)
• Multiplicity (e.g. One course can have many students)
• Navigability (unidirectional, bidirectional)
Page 37Classification: Restricted
University Person
1
0..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
teacheremployee
Role
“A given university groups many people;
some act as students, others as teachers.
A given student belongs to a single
university; a given teacher may or may not
be working for the university at a particular
time.”
student
Association: Multiplicity and Roles
Page 38Classification: Restricted
Class Diagram
Page 39Classification: Restricted
OO Relationships : Composition
Class W
Class P1 Class P2
Whole Class
Part Classes
Automobile
Engine Transmission
Example
Composition: expresses a relationship among instances of
related classes. It is a specific kind of Whole-Part
relationship.
It expresses a relationship where an instance of the
Whole-class has the responsibility to create and initialize
instances of each Part-class.
It may also be used to express a relationship where instances
of the Part-classes have privileged access or visibility to
certain attributes and/or behaviors defined by the Whole-
class.
Composition should also be used to express relationship
where instances of the Whole-class have exclusive access to
and control of instances of the Part-classes.
Composition should be used to express a relationship where
the behavior of Part instances is undefined without being
related to an instance of the Whole. And, conversely, the
behavior of the Whole is ill-defined or incomplete if one or
more of the Part instances are undefined.
[From Dr.David A. Workman]
Page 40Classification: Restricted
OO Relationships : Composition
[From Dr.David A. orkman]
Class C
Class E1 Class E2
AGGREGATION
Container Class
Containee Classes
Bag
Apples Milk
Example
Aggregation: expresses a relationship among
instances of related classes. It is a specific kind of
Container-Containee relationship.
It expresses a relationship where an instance of
the Container-class has the responsibility to hold
and maintain instances of each Containee-class
that have been created outside the auspices of the
Container class.
Aggregation should be used to express a more
informal relationship than composition expresses.
That is, it is an appropriate relationship where the
Container and its Containees can be manipulated
independently.
Aggregation is appropriate when Container and
Containees have no special access privileges to
each other.
Page 41Classification: Restricted
Aggregations vs. Composition
• Composition is really a strong form of aggregation
• components have only one owner
• components cannot exist independent of their
owner
• components live or die with their owner
e.g. Each car has an engine that can not be
shared with other cars.
•Aggregations may form "part of" the aggregate, but may not be
essential to it. They may also exist independent of the aggregate.
e.g. Apples may exist independent of the bag.
Page 42Classification: Restricted
Interaction Diagrams
A Sequence diagram is an interaction diagram that shows how objects
operate with one another and in what order.
• They're also called event diagrams.
• A sequence diagram is a good way to visualize and validate various
runtime scenarios.
• These can help to predict how a system will behave and to discover
responsibilities a class may need to have in the process of
modeling a new system
Page 43Classification: Restricted
• Sequence Diagram (Cont…)
• Interaction Diagram
• State Diagram
• Activity Diagram
Topics to be covered in next session
Page 44Classification: Restricted
Thank you

More Related Content

PPSX
Introduction to OOA and UML
PPSX
Workflow Diagram
PPSX
Introduction to OOA and UML - Part 2
PPSX
Introduction to OOA and UML
PPSX
Unified Modeling Language - UML - Complete Guide - Part 2
PPSX
Unified Modeling Language - UML - Complete Guide - Part 1
PPSX
UML Training for Business Analysts
PPSX
Introduction to UML
Introduction to OOA and UML
Workflow Diagram
Introduction to OOA and UML - Part 2
Introduction to OOA and UML
Unified Modeling Language - UML - Complete Guide - Part 2
Unified Modeling Language - UML - Complete Guide - Part 1
UML Training for Business Analysts
Introduction to UML

What's hot (18)

PPT
Ch 5 O O Data Modeling
PPT
Ch 6 Logical D B Design
PPT
The Database Environment Chapter 4
PPT
Ch 5 O O Data Modeling Class
PPT
The Database Environment Chapter 14
PPT
Ch 3 E R Model
PDF
S6 advanced issues in erd pdf
PPSX
EER Model
PPTX
Basic database analysis(database)
PPTX
Data modeling
PPT
Module 5 oodb systems semantic db systems
PPTX
The Relational Model
PDF
ERD - Entity Relationship Diagram
PPT
Eer case study
PPT
D I T211 Chapter 3
PPTX
Fundamentals of Data Modeling and Database Design by Dr. Kamal Gulati
PPT
Ch 4 E E R Biz Rules
PPT
Erd chapter 3
Ch 5 O O Data Modeling
Ch 6 Logical D B Design
The Database Environment Chapter 4
Ch 5 O O Data Modeling Class
The Database Environment Chapter 14
Ch 3 E R Model
S6 advanced issues in erd pdf
EER Model
Basic database analysis(database)
Data modeling
Module 5 oodb systems semantic db systems
The Relational Model
ERD - Entity Relationship Diagram
Eer case study
D I T211 Chapter 3
Fundamentals of Data Modeling and Database Design by Dr. Kamal Gulati
Ch 4 E E R Biz Rules
Erd chapter 3
Ad

Similar to Introduction to OOA and UML - Part 1 (20)

PPSX
Introduction to OOA and UML
PPSX
Introduction to OOA and UML
PPSX
Introduction to OOA and UML - Part 2
PPT
CASE Tools lab.ppt
PDF
use case ABOUT computer programming .pdf
PPT
UML Introduction The system development life cycle (SDLC) is a complex projec...
PPT
uml2-1214558329929112-8.ppt
PDF
CS8592-OOAD Lecture Notes Unit-2
PPTX
Slideshow on the notes of software engineering
PPTX
UML Chart Designing Methods - Lecture.pptx
PPT
Uml report
PPT
umlpresentation-140519151641-phpapp02.ppt
PPT
ASP.NET System design 2
PPT
UML Diagrams
PDF
2 class use case
PPTX
SMD Unit ii
PPTX
PPTX
OOP_Module 2.pptx
PPTX
Interaction modelling is further classified into two types: Use case diagram....
Introduction to OOA and UML
Introduction to OOA and UML
Introduction to OOA and UML - Part 2
CASE Tools lab.ppt
use case ABOUT computer programming .pdf
UML Introduction The system development life cycle (SDLC) is a complex projec...
uml2-1214558329929112-8.ppt
CS8592-OOAD Lecture Notes Unit-2
Slideshow on the notes of software engineering
UML Chart Designing Methods - Lecture.pptx
Uml report
umlpresentation-140519151641-phpapp02.ppt
ASP.NET System design 2
UML Diagrams
2 class use case
SMD Unit ii
OOP_Module 2.pptx
Interaction modelling is further classified into two types: Use case diagram....
Ad

More from Shwetha-BA (13)

PPSX
Requirement Elicitation Techniques
PPSX
Role of BA in Testing
PPSX
Requirements Management
PPSX
Enterprise Analysis
PPSX
Software Development Life Cycle – SDLC
PPSX
Introduction to Business Analysis
PPSX
Business Aanalysis Resume/Interview preparation
PPS
Solution Evaluation (BA Role)
PPSX
Requirements Management
PPSX
Requirement Elicitation Techniques
PPSX
Enterprise Analysis
PPSX
Software Development Life Cycle - SDLC
PPSX
Introduction to Business Analysis
Requirement Elicitation Techniques
Role of BA in Testing
Requirements Management
Enterprise Analysis
Software Development Life Cycle – SDLC
Introduction to Business Analysis
Business Aanalysis Resume/Interview preparation
Solution Evaluation (BA Role)
Requirements Management
Requirement Elicitation Techniques
Enterprise Analysis
Software Development Life Cycle - SDLC
Introduction to Business Analysis

Recently uploaded (20)

PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
DOCX
The AUB Centre for AI in Media Proposal.docx
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPT
Teaching material agriculture food technology
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
Cloud computing and distributed systems.
PDF
Electronic commerce courselecture one. Pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
KodekX | Application Modernization Development
NewMind AI Weekly Chronicles - August'25 Week I
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Building Integrated photovoltaic BIPV_UPV.pdf
The AUB Centre for AI in Media Proposal.docx
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Digital-Transformation-Roadmap-for-Companies.pptx
Diabetes mellitus diagnosis method based random forest with bat algorithm
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Teaching material agriculture food technology
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Encapsulation_ Review paper, used for researhc scholars
Per capita expenditure prediction using model stacking based on satellite ima...
MIND Revenue Release Quarter 2 2025 Press Release
20250228 LYD VKU AI Blended-Learning.pptx
Cloud computing and distributed systems.
Electronic commerce courselecture one. Pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
KodekX | Application Modernization Development

Introduction to OOA and UML - Part 1

  • 2. Page 2Classification: Restricted Agenda • Introduction to OOA and UML • Stated vs Un-stated • Software Analysis and Design • Modeling • UML • Why UML • Overview • Types • Use Case Diagram • Types of Actor • Class Diagram • What is Class Diagram • Class Representation • Types of Class • Sequence Diagram • Interaction Diagram
  • 3. Page 3Classification: Restricted Introduction • Object Oriented Analysis and Design is an important skill for Business Analysts as well as Technical Architects • The design is dependent on a good analysis
  • 4. Page 4Classification: Restricted Why Do We Need Object Oriented Analysis or a Structured Analysis?
  • 6. Page 6Classification: Restricted Modeling • Describing a system at a high level of abstraction – A model of the system – Used for requirements and specifications • Is it necessary to model software systems?
  • 7. Page 7Classification: Restricted What is UML? • UML stands for “Unified Modeling Language” • It is a industry-standard graphical language for specifying, visualizing, constructing, and documenting the artifacts of software systems • The UML uses mostly graphical notations to express the OO analysis and design of software projects. • Simplifies the complex process of software design
  • 8. Page 8Classification: Restricted Why UML for Modeling • Use graphical notation to communicate more clearly than natural language (imprecise) and code(too detailed). • Help acquire an overall view of a system. • UML is not dependent on any one language or technology. • UML moves us from fragmentation to standardization.
  • 9. Page 9Classification: Restricted Types of UML Diagrams • Use Case Diagram • Class Diagram • Sequence Diagram • Collaboration Diagram • State Diagram This is only a subset of diagrams … but are most widely used
  • 10. Page 10Classification: Restricted Use Case Diagram • Used for describing a set of user scenarios • Mainly used for capturing user requirements • Work like a contract between end user and software developers
  • 11. Page 11Classification: Restricted Use Case Diagram (core components) Actors: A role that a user plays with respect to the system, including human users and other systems. e.g., inanimate physical objects (e.g. robot); an external system that needs some information from the current system. Use case: A set of scenarios that describing an interaction between a user and a system, including alternatives. System boundary: rectangle diagram representing the boundary between the actors and the system.
  • 12. Page 12Classification: Restricted Use Case Diagram (core relationship) Association: communication between an actor and a use case; Represented by a solid line. Generalization: relationship between one general use case and a special use case (used for defining special alternatives) Represented by a line with a triangular arrow head toward the parent use case.
  • 14. Page 14Classification: Restricted Use Case Diagram (core relationship) Include: a dotted line labeled <<include>> beginning at base use case and ending with an arrows pointing to the include use case. The include relationship occurs when a chunk of behavior is similar across more than one use case. Use “include” in stead of copying the description of that behavior. <<include>> Extend: a dotted line labeled <<extend>> with an arrow toward the base case. The extending use case may add behavior to the base use case. The base class declares “extension points”. <<extend>>
  • 15. Page 15Classification: Restricted Use Case Diagram (core relationship)
  • 16. Page 16Classification: Restricted Use Case Diagram (core relationship)
  • 17. Page 17Classification: Restricted Use Case Diagrams Library System Borrow Order Title Fine Remittance Client Employee Supervisor Boundary Actor Use Case
  • 19. Page 19Classification: Restricted Types of Actor Actors Primary Actor Secondary Actor
  • 24. Page 24Classification: Restricted Use Cases for the Exercise
  • 27. Page 27Classification: Restricted 27 • Object-oriented analysis and design (OOAD) is a technical approach used in the analysis and design of an application or system through the application of the object-oriented paradigm and concepts including visual modeling. • This is applied throughout the development life cycle of the application or system, fostering better product quality and even encouraging stakeholder participation and communication
  • 28. Page 28Classification: Restricted • Used for describing structure and behavior in the use cases • Provide a conceptual model of the system in terms of entities and their relationships • Used for requirement capture, end-user interaction • Detailed class diagrams are used for developers Class diagram
  • 29. Page 29Classification: Restricted A collection of similar objects is a class. And an object is an instance of a class. What is a Class?
  • 30. Page 30Classification: Restricted Class representation • Each class is represented by a rectangle subdivided into three compartments • Name • Attributes • Operations • Modifiers are used to indicate visibility of attributes and operations. • ‘+’ is used to denote Public visibility (everyone) • ‘#’ is used to denote Protected visibility (friends and derived) • ‘-’ is used to denote Private visibility (no one) • By default, attributes are hidden and operations are visible.
  • 31. Page 31Classification: Restricted An example of Class Account_Name - Customer_Name - Balance +addFunds( ) +withDraw( ) +transfer( ) Name Attributes Operations
  • 32. Page 32Classification: Restricted • Super Class • Parent Class • Generalized Class • Specialized Class • Sub Class • Child Class Types of Classes
  • 33. Page 33Classification: Restricted Animal Amphibian Mammal Reptile Horse Example Child Class of Animal Child Class of Animal Child Class of Mammal Super Class of horse Parent Class of Mammal Sub Class of Animal
  • 34. Page 34Classification: Restricted OO Relationships • There are two kinds of Relationships • Generalization (parent-child relationship) • Association (one object to another object relationship) • Associations can be further classified as • Aggregation • Composition
  • 35. Page 35Classification: Restricted OO Relationships : Generalization Subtype2 Supertype Subtype1 • Generalization expresses a parent/child relationship among related classes. • Used for abstracting details in several layers Regular Customer Loyalty Customer Customer Example : Regular Customer Loyalty Customer Customeror:
  • 36. Page 36Classification: Restricted OO Relationships : Association • Represent relationship between instances of classes • Student enrolls in a course • Courses have students • Courses have exams • Etc. • Association has two ends • Role names (e.g. enrolls) • Multiplicity (e.g. One course can have many students) • Navigability (unidirectional, bidirectional)
  • 37. Page 37Classification: Restricted University Person 1 0..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 teacheremployee Role “A given university groups many people; some act as students, others as teachers. A given student belongs to a single university; a given teacher may or may not be working for the university at a particular time.” student Association: Multiplicity and Roles
  • 39. Page 39Classification: Restricted OO Relationships : Composition Class W Class P1 Class P2 Whole Class Part Classes Automobile Engine Transmission Example Composition: expresses a relationship among instances of related classes. It is a specific kind of Whole-Part relationship. It expresses a relationship where an instance of the Whole-class has the responsibility to create and initialize instances of each Part-class. It may also be used to express a relationship where instances of the Part-classes have privileged access or visibility to certain attributes and/or behaviors defined by the Whole- class. Composition should also be used to express relationship where instances of the Whole-class have exclusive access to and control of instances of the Part-classes. Composition should be used to express a relationship where the behavior of Part instances is undefined without being related to an instance of the Whole. And, conversely, the behavior of the Whole is ill-defined or incomplete if one or more of the Part instances are undefined. [From Dr.David A. Workman]
  • 40. Page 40Classification: Restricted OO Relationships : Composition [From Dr.David A. orkman] Class C Class E1 Class E2 AGGREGATION Container Class Containee Classes Bag Apples Milk Example Aggregation: expresses a relationship among instances of related classes. It is a specific kind of Container-Containee relationship. It expresses a relationship where an instance of the Container-class has the responsibility to hold and maintain instances of each Containee-class that have been created outside the auspices of the Container class. Aggregation should be used to express a more informal relationship than composition expresses. That is, it is an appropriate relationship where the Container and its Containees can be manipulated independently. Aggregation is appropriate when Container and Containees have no special access privileges to each other.
  • 41. Page 41Classification: Restricted Aggregations vs. Composition • Composition is really a strong form of aggregation • components have only one owner • components cannot exist independent of their owner • components live or die with their owner e.g. Each car has an engine that can not be shared with other cars. •Aggregations may form "part of" the aggregate, but may not be essential to it. They may also exist independent of the aggregate. e.g. Apples may exist independent of the bag.
  • 42. Page 42Classification: Restricted Interaction Diagrams A Sequence diagram is an interaction diagram that shows how objects operate with one another and in what order. • They're also called event diagrams. • A sequence diagram is a good way to visualize and validate various runtime scenarios. • These can help to predict how a system will behave and to discover responsibilities a class may need to have in the process of modeling a new system
  • 43. Page 43Classification: Restricted • Sequence Diagram (Cont…) • Interaction Diagram • State Diagram • Activity Diagram Topics to be covered in next session