55
Case Study : Design - Library Management System Lecturer: JUNBEOM YOO [email protected]

dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

  • Upload
    others

  • View
    0

  • Download
    0

Embed Size (px)

Citation preview

Page 1: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Case Study : Design- Library Management System

Lecturer: JUNBEOM [email protected]

Page 2: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Stage 2000. Build

Plan andElaboration

Build Deployment1000 2000 3000

Page 3: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

6 Phases of ‘Build’ Stage

Cycle 1 Cycle 2 Cycle n...

Plan andElaboration

Build Deployment1000 2000 3000

2100 2200 2n00

Revise Plan

2110 Sync.Artifacts

2120Analyze

2130Design

2140Construct

2150Test

2160

3Konkuk University

Page 4: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Phase 2040. Design

Revise Plan

2110 Sync.Artifacts

2120Analyze

2130Design

2140Construct

2150Test

2160

Page 5: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Phase 2040. Design

• Phase 2040 Activities

Define Reports,UI, and Storyboards

2142 RefineSystem Architecture

2143

Define Database Schema

2146

DesignReal Use Cases

2141

DefineInteraction Diagrams

2144

b

Design2140

a. In parallel with interaction diagramsb. Varied order

Define Design Class Diagrams

2145 a

5Konkuk University

Page 6: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

Define Reports,UI, and Storyboards

2142 RefineSystem Architecture

2143

Define Database Schema

2146

DesignReal Use Cases

2141

DefineInteraction Diagrams

2144

b

a. In parallel with interaction diagramsb. Varied order

Define Design Class Diagrams

2145 a

6Konkuk University

Page 7: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

1. Make Reservation

Use Case 1. Make Reservation

Actor Librarian

Purpose Create a new reservation

Overview (As in the business use case)

Type Primary and Real

Cross ReferenceSystem Functions: R1.1, R3.1Use Case: “Add Borrower”

Pre-Requisites A borrower should be registered.

Typical Courses of Events

(A) : Actor, (S) : System1. (A) A librarian inputs an isbn and ssn of the title2. (S) Find a corresponding title3. (S) Find a corresponding borrower4. (S) Create a new reservation5. (S) Store the new reservation6. (S) Increase reservationCount in the borrower7. (S) Increase reservationCount in the title

Alternative Courses of Events N/A

Exceptional Courses of EventsLine 2: If the title does not exist, display an error message.Line 3: If the borrower does not exist, display an error message.

7Konkuk University

Page 8: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

2. Remove Reservation

Use Case 2. Remove Reservation

Actor Librarian

Purpose Remove a reservation information

Overview (As in the business use case)

Type Primary and Real

Cross ReferenceSystem Functions: R1.2, R1.3Use Case: “Lend Item”

Pre-RequisitesA borrower should be registered.A title should have been reserved.

Typical Courses of Events

(A) : Actor, (S) : System1. (A) A librarian inputs an isbn of the title2. (S) Find a corresponding reservation3. (S) Remove the reservation4. (S) Decrease reservationCount of the borrower5. (S) Decrease reservationCount of the title

Alternative Courses of Events N/A

Exceptional Courses of Events Line 2: If the reservation doe not exist, display an error message.

8Konkuk University

Page 9: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

3. Lend Item

Use Case 3. Lent Item

Actor Librarian

Purpose Lend items to a borrower

Overview (As in the business use case)

Type Primary and Real

Cross ReferenceSystem Functions: R1.3, R1.2, R3.1Use Cases: “Remove Reservation”, “Add Borrower”

Pre-Requisites An item should exist.

Typical Courses of Events

(A) : Actor, (S) : System1. (A) A librarian inputs an item’s ID and ssn of the borrower2. (S) Find a corresponding borrower3. (S) Find a corresponding item4. (S) Create a new loan5. (S) Store the new loan6. (S) Set validLoan to true7. (S) Increase loanCount of borrower8. (S) Set available to false9. (S) Decrease AvailableCount of the title

Alternative Courses of Events N/A

Exceptional Courses of Events Line 2: If the borrower does not exist, invoke “Add Borrower” use case.9Konkuk University

Page 10: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

4. Return Item

Use Case 4. Return Item

Actor Librarian

Purpose Return items loaned

Overview (As in the business use case)

Type Primary and Real

Cross ReferenceSystem Functions: R1.4.1, R1.4.2, R1.6Use Cases: “Calculate Late-Return-Fee”, “Notify Availability”

Pre-Requisites An item should have been loaned.

Typical Courses of Events

(A) : Actor, (S) : System1. (A) A librarian inputs an item’s ID2. (S) Find a corresponding loan3. (S) Get item information from the loan4. (S) Get title information from the item5. (S) Get loanPeriod from the title6. (S) Compute calculateLateReturnFee7. (S) Check reservationCount of the title.

8. (S) If the title is reserved, find the corresponding reservation

9. (S) Decrease loanCount of the loan.10. (S) Decrease loanCount of the Borrower.11. (S) Set validLoan of the borrower to false.12. (S) Set available of the item to true.13. (S) Increase AvailbaleCount of the title.

Alternative Courses of Events N/A

Exceptional Courses of Events Line 2: If the loan does not exist, display an error message.

10Konkuk University

Page 11: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

5. Calculate Late-Return-Fee

Use Case 5. Calculate Late-Return-Fee

Actor None

Purpose Compute late-return fee for an item returned late

Overview (As in the business use case)

Type Primary and Real

Cross ReferenceSystem Functions: R1.4.1, R1.4.2Use Cases: “Return Item”

Pre-Requisites Lending time of an item should have expired

Typical Courses of Events(A) : Actor, (S) : System1. (S) Calculate Late-Return-Fee of the item2. (S) Display the Late-Return-Fee

Alternative Courses of Events N/A

Exceptional Courses of Events N/A

11Konkuk University

Page 12: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

6. Get Replacement-FeeUse Case 6. Get Replacement-Fee

Actor Librarian

Purpose Compute replacement-fee for a lost title

Overview (As in the business use case)

Type Primary and Real

Cross ReferenceSystem Functions: R1.5Use Cases: -

Pre-Requisites A title should be lost.

Typical Courses of Events

(A) : Actor, (S) : System1. (A) A librarian inputs an item’s ID 1. (S) Find a corresponding loan2. (S) Get an item from the loan3. (S) Get a title from the item4. (S) Get price of the title5. (S) Compute replacementFee6. (S) Set validLoan to false7. (S) Update the loan8. (S) Decrease loanCount of the borrower.9. (S) Set the lost of the item to true. (?)10. (S) Decrease numOfItem of the title.

Alternative Courses of Events N/A

Exceptional Courses of Events Line 2: If the loan doe not exist, display an error message.12Konkuk University

Page 13: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

7. Notify Availability

Use Case 7. Notify Availability

Actor None

Purpose Notify availability of a reserved item

Overview (As in the business use case)

Type Primary and Real

Cross ReferenceSystem Functions: R1.4.1, R1.6, R2.4Use Cases: “Return Item”, “Add Item”

Pre-Requisites An item should have been returned or a new item should have been added.

Typical Courses of Events(A) : Actor, (S) : System1. (S) Print a post-card

Alternative Courses of Events N/A

Exceptional Courses of Events N/A

13Konkuk University

Page 14: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

8. Add Title

Use Case 8. Add Title

Actor Librarian

Purpose Register a new title

Overview (As in the business use case)

Type Primary and Real

Cross ReferenceSystem Functions: R2.1, R2.4Use Case: “Add Item”

Pre-Requisites N/A

Typical Courses of Events

(A) : Actor, (S) : System1. (A) A librarian inputs title information such as name, isbn, price, publisher, loanPeriod

(Book: author, Magazine:month, publishCycle)2. (S) Find a corresponding title3. (S) Create a new title4. (S) Store the new title5. (S) Invoke “Add Item”

Alternative Courses of Events N/A

Exceptional Courses of Events Line 1: If the title already exists, display an error message.

14Konkuk University

Page 15: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2033. Define Domain Model

<<Business Object>> Item

ID : Integeravailable : Boolean

<<Business Object>> Title

name : Stringisbn : Stringcount : Integerprice : Floatpublisher : Stringlending time : Integer

<<Business Object>> Reservation

date : Date

<<Business Object>> Book

author: String

<<Business Object>> Loan

date: Datelate-return-fee : Integer

<<Business Object>> Librarian

name : Stringuser ID : Stringpassword : string

<<Business Object>> Magazine

month : Integer

<<Business Object>> Borrower

name : Stringage : IntegerSSN : Stringaddress : Stringphone : Stringzip : String

1 .. * 1

1 .. *

0 .. 1

0 .. *

1

1

1

0 .. *

Has/Have

Copy of

Refer to

Has/Have

Refer to

0 .. *

Reference

15Konkuk University

Page 16: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

9. Remove Title

Use Case 9. Remove Title

Actor Librarian

Purpose Delete information of a title

Overview (As in the business use case)

Type Primary and Real

Cross ReferenceSystem Functions: R2.2Use Case: -

Pre-Requisites N/A

Typical Courses of Events

(A) : Actor, (S) : System1. (A) A librarian inputs a title’s isbn to remove2. (S) Find a corresponding title3. (S) Check if the corresponding title is reserved.4. (S) If the title is reserved, Remove the reservation5. (S) Check the item of the title is loaned. (and then what about items?)6. (S) Remove the title

Alternative Courses of Events N/A

Exceptional Courses of Events Line 2: If the title does not exist, display an error message.

16Konkuk University

Page 17: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

10. Update Title

Use Case 10. Update Title

Actor Librarian

Purpose Update information of a title

Overview (As in the business use case)

Type Primary and Real

Cross ReferenceSystem Functions: R2.3Use Case: -

Pre-Requisites N/A

Typical Courses of Events

(A) : Actor, (S) : System1. (A) A librarian inputs a title’s isbn and information of the title to change2. (S) Find a corresponding title3. (S) Update the title (How?)

Alternative Courses of Events N/A

Exceptional Courses of EventsLine 2: If the item does not exist, display “Not Existing Title”. Error message.Line 3: If the isbn is changed, then update items too, (How?)

17Konkuk University

Page 18: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

11. Add Item

Use Case 11. Add Item

Actor Librarian

Purpose Add a new item

Overview (As in the business use case)

Type Primary and Real

Cross ReferenceSystem Functions: R2.4Use Cases: “Add Title”

Pre-Requisites N/A

Typical Courses of Events

(A) : Actor, (S) : System1. (A) A librarian inputs an item’s id2. (S) Find a corresponding title3. (S) Get an item’s ID from the title4. (S) Create a new item5. (S) Store the new item6. (S) Increase numOfItem of the title (?)7. (S) Increase availablecount of the item

Alternative Courses of Events N/A

Exceptional Courses of Events Line 2: Line 2: If the title does not exist, display an error message.

18Konkuk University

Page 19: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

12. Remove Item

Use Case 12. Remove Item

Actor Librarian

Purpose Remove information of an item

Overview (As in the business use case)

Type Primary and Real

Cross ReferenceSystem Functions: R2.1, R2.5Use Case: “Remove Title”

Pre-Requisites N/A

Typical Courses of Events

(A) : Actor, (S) : System1. (A) A librarian inputs an item’s ID2. (S) Find a corresponding item3. (S) Check if the item is borrowed4. (S) If the item is borrowed, decrease numOfItem of the title5. (S) Decrease availableCount of the title6. (S) Remove the item

Alternative Courses of Events N/A

Exceptional Courses of EventsLine 2: If the item does not exist, display an error message.Line 3: If the item was already borrowed, display an error message

19Konkuk University

Page 20: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

13. Update Item

Use Case 13. Update Item

Actor Librarian

Purpose Update information of an item

Overview (As in the business use case)

Type Primary and Real

Cross ReferenceSystem Functions: R2.6Use Case: -

Pre-Requisites N/A

Typical Courses of Events

(A) : Actor, (S) : System1. (A) A librarian inputs the item’s id and information to change2. (S) Find A corresponding item3. (S) Update the item4. (S) If a lost of the item is true, decrease numOfItem of the title.5. (S) Decrease the availableCount of the title.6. (S) If a lost of the item is false, increase numOfItem of the title.

(What? Only for these cases “Update Item” are used?)7. (S) Increase availableCount of the title

Alternative Courses of Events N/A

Exceptional Courses of Events Line 2: If the item does not exist, display an error message.

20Konkuk University

Page 21: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

14. Add Borrower

Use Case 14. Add Borrower

Actor Librarian

Purpose Register a new borrower

Overview (As in the business use case)

Type Primary and Real

Cross ReferenceSystem Functions: R1.1, R1.3, R3.1Use Cases: “Make Reservation”, “Lend Item”

Pre-Requisites N/A

Typical Courses of Events

(A) : Actor, (S) : System1. (A) A librarian inputs a borrower’s name, ssn, and address.2. (S) Find a corresponding borrower3. (S) Create a new borrower4. (S) Store the new borrower

Alternative Courses of Events N/A

Exceptional Courses of Events Line 2: If the borrower exists already, display an error message.

21Konkuk University

Page 22: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

15. Remove Borrower

Use Case 15. Remove Borrower

Actor Librarian

Purpose Remove information of a borrower

Overview (As in the business use case)

Type Primary and Real

Cross ReferenceSystem Functions: R3.2Use Case: -

Pre-Requisites N/A

Typical Courses of Events

(A) : Actor, (S) : System1. (A) A librarian inputs the borrower’s ssn2. (S) Find a corresponding borrower3. (S) Find a loan of the borrower4. (S) If the loan is invalid, find a reservation5. (S) Get the title of the reservation6. (S) Decrease reservationCount of the title7. (S) Remove borrower

Alternative Courses of Events N/A

Exceptional Courses of EventsLine 2: If the borrower does not exist, display an error message.Line 3: If the loan is still valid, display an error message.

22Konkuk University

Page 23: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

16. Update Borrower

Use Case 16. Update Borrower

Actor Librarian

Purpose Update information of a borrower

Overview (As in the business use case)

Type Primary and Real

Cross ReferenceSystem Functions: R3.3Use Case: -

Pre-Requisites N/A

Typical Courses of Events

(A) : Actor, (S) : System1. (A) A librarian inputs a borrower’s ssn and information to change2. (S) Find a corresponding borrower3. (S) Update the borrower

Alternative Courses of Events N/A

Exceptional Courses of Events Line 2: If the borrower does not exist, display an error message.

23Konkuk University

Page 24: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

17. Log-In

Use Case 17. Log-In

Actor Librarian

Purpose Check access authority of a librarian

Overview (As in the business use case)

Type Secondary and Real

Cross ReferenceSystem Functions: R4.1Use Case: -

Pre-Requisites A librarian should have user name and password.

Typical Courses of Events(A) : Actor, (S) : System1. (A) A librarian inputs an userID and password2. (S) Check if the userID and password are correct

Alternative Courses of Events N/A

Exceptional Courses of Events Line 2: If the userID and password are not correct, display an error message.

24Konkuk University

Page 25: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

18. Log-Out

Use Case 18. Log-Out

Actor Librarian

Purpose Exit the library management system

Overview (As in the business use case)

Type Secondary and Essential

Cross ReferenceSystem Functions: R4.1Use Case: -

Pre-Requisites A librarian should have user name and password.

Typical Courses of Events(A) : Actor, (S) : System1. (A) A librarian selects “LogOut”2. (S) Check if the userID is correct and then exit the system

Alternative Courses of Events N/A

Exceptional Courses of Events Line 2: If the userID is incorrect, display an error message.

25Konkuk University

Page 26: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2041. Design Real Use Cases

19. Count Loans

Use Case 19. Count Loans

Actor Librarian

Purpose Compute total count of the titles checked out

Overview (As in the business use case)

Type Secondary and Essential

Cross ReferenceSystem Functions: R5.1Use Case: -

Pre-Requisites A librarian should have user name and password.

Typical Courses of Events(A) : Actor, (S) : System1. (A) A librarian requests loan count2. (S) Get numOfLoan of the loan

Alternative Courses of Events N/A

Exceptional Courses of Events N/A (Really?)

26Konkuk University

Page 27: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2042. Define Reports, UI, and Storyboards

Define Reports,UI, and Storyboards

2142 RefineSystem Architecture

2143

Define Database Schema

2146

DesignReal Use Cases

2141

DefineInteraction Diagrams

2144

b

a. In parallel with interaction diagramsb. Varied order

Define Design Class Diagrams

2145 a

27Konkuk University

Page 28: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2042. Define Reports, UI, and Storyboards

• Make Reservation

28Konkuk University

Page 29: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2042. Define Reports, UI, and Storyboards

• Lent Item

29Konkuk University

Page 30: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2042. Define Reports, UI, and Storyboards

• Count Loans

30Konkuk University

Page 31: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2043. Refine System Architecture

Define Reports,UI, and Storyboards

2142 RefineSystem Architecture

2143

Define Database Schema

2146

DesignReal Use Cases

2141

DefineInteraction Diagrams

2144

b

a. In parallel with interaction diagramsb. Varied order

Define Design Class Diagrams

2145 a

31Konkuk University

Page 32: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2043. Refine System Architecture

• Steps 1~3 : Drawing Deployment Diagram

Database Package

BusinessObject Package

Library Management System

32Konkuk University

Page 33: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2043. Refine System Architecture

• Steps 4~7 : Drawing Package Diagram

Application Logic Layer

Storage Layer

Business Object Package+ Loan + Title+ Borrower + Reservation+ Book + Magazine+ Item + Librarian

Database Package+DataBase

33Konkuk University

Page 34: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2044. Define Interaction Diagrams

Define Reports,UI, and Storyboards

2142 RefineSystem Architecture

2143

Define Database Schema

2146

DesignReal Use Cases

2141

DefineInteraction Diagrams

2144

b

a. In parallel with interaction diagramsb. Varied order

Define Design Class Diagrams

2145 a

34Konkuk University

Page 35: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

DataBase : Librarian Controller

makeReservation()

:Reservation :Title :Borrower

searchTitleDB(isbn:String)

titleRef:= searchTitle(isbn:String)

borrowerRef:= searchBorrower(ssn:String)

searchBorrowerDB(ssn:String)

reservationRef:= new Reservation(titleRef:Title, borrowerRef:Borrower)

[borrowerRef is valid]displayMessage("Error")

[borrowerRef is invalid]

displayMessage("Error")[titleRef is invalid]

[titleRef is valid]

addReservation(reservationRef:Reservation)addReservationDB(reservationRef:Reservation)

displayMessage("OK")

increaseReservationCount()

increaseReservationCount()

1. Make Reservation

35Konkuk University

Page 36: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

2. Remove Reservation

: Librarian Controller DataBase:Reservation :Borrower :Title

removeReservation()

[reservationRef is valid]

displayMessage("Error")

[reservationRef is invalid]

removeReservation(reservationRef:Reservation)

removeReservationDB(reservationRef:Reservation)

decreaseReservationCount()

decreaseReservationCount()

displayMessage("OK")

reservationRef:= searchReservation(isbn: ISBNType)searchReservationDB(isbn: ISBNType)

36Konkuk University

Page 37: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

3. Lend Item

: Librarian Controller DataBase:Item :Borrower:Loan:Title

lendItem()

loanRef:= new Loan(itemRef: Item, borrowerRef: Borrower)

[borrowerRef is invalid]

borrowerRef:= searchBorrower(ssn: String)searchBorrowerDB(ssn: String)

displayMessage("Error")

addLoan(loanRef:Loan)

addLoanDB(loanRef: Loan)

displayMessage("OK")

increaseLoanCount()

setAvailable(false)

itemRef:=searchItem(itemID:String)

searchItemDB(itemID:String)

[borrowerRef is valid]

decreaseAvailableCount()

setValidLoan(true)

37Konkuk University

Page 38: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

4. Return Item

: Librarian Controller DataBaseReservation:Item :Borrower :Loan:Title

[loanRef is valid]

returnItem()

loanRef:= searchLoan( itemID: String)

[borrowerRef is valid]

searchLoanDB( itemID: String)

displayMessage(lateReturnFee)

displayMessage("OK")

displayMessage("Error")[loanRef is invalid]

decreaseLoanCount()

decreaseLoanCount()

setAvailable(true)

itemRef:=getItem()

titleRef:=getTitle()

loanPeriod:=getLoanPeriod()

printNotifyCard(titleRef:Title)

reservationRef:=searchReservationDB(titleRef: Title)

valid:=isReserved()

[valid = "True"]

printCard(reservationRef:Reservation)

increaseAvailable

displayMessage("Not Reserved")

[valid = "False"]

lateReturnFee:= calculateLateReturnFee(loanPeriod)

reservationRef:= searchReservation(titleRef: Title)

setValidloan(false)

38Konkuk University

Page 39: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

6. Get Replacement-Fee

: Librarian Controller DataBase:Loan :Title :Item Borrower

getReplacementFee()

loanRef:=searchLoan(itemID: String)

decreaseLoanCount()

setLost(true)

searchLoanDB( itemID: String)

displayMessage(replacementFee)

displayMessage("OK")

itemRef:=getItem()

[loanRef is valid]

displayMessage("Error")

[loanRef is invalid]

price=getPrice()

replacementFee:=calculateReplacementFee(price)

setValidLoan(false)

updateLoan(loanRef:Loan)

updateLoanDB(loanRef:Loan)

decreaseNumOfItem()

titleRef:= getTitle()

39Konkuk University

Page 40: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

8. Add Title

: Librarian Controller DataBase:Title :Book :ItemMagazine

[titleRef is invalid && title type is "Book"]

[titleRef is valid]

addTitle()

[titleRef is invalid && title type is "Magazine"]

titleRef:=searchTitle(isbn: String)searchTitleDB(isbn: String)

displayMessage("Error")

titleRef:= new Book(name:String, isbn:String, price:Integer, loanPeriod:Integer,author:String)

addTitle(titleRef:Title) addTitleDB(titleRef:Title)

titleRef:= new Magazine(name:String, isbn:String, price:Integer, loanPeriod:Integer, month:String, publishCycle:String)

addTitle(isbn: ISBNType)addTitleDB(titleRef:Title)

addItem(isbn: ISBNType)

addItem(titleRef:Title)

displayMessage("OK")

40Konkuk University

Page 41: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

9. Remove Title

: Librarian Controller :Title DataBase:Borrower:Reservation :Item

[titleRef is invalid]

removeTitle()

titleRef:=searchTitle(isbn: String)searchTitleDB(isbn: String)

displayMessage("Error")

removeTitle(titleRef:Title)removeTitleDB(titleRef:Title)

removeItem(isbn: ISBNType)

displayMessage("OK")

[titleRef is valid]

reservationRef:=searchReservation(titleRef:Title)

searchReservationDB(titleRef:Title)

decreaseReservationCount()

[reservationRef is valid]

41Konkuk University

Page 42: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

10. Update Title

: Librarian Controller DataBase:Title

[titleRef is invalid]

[titleRef is valid]

updateTitle( )

displayMessage("Error")

displayMessage("OK")

titleRef:= searchTitle(isbn: String)searchTitleDB(isbn: String)

updateTitle(titleRef: Title) updateTitleDB(titleRef: Title)

42Konkuk University

Page 43: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

11. Add Item

: Librarian : Controller :DataBase:Title :Item

[titleRef is valid]

[titleRef is invalid]

addItem( )

displayMessage("Error")

displayMessage("OK")

titleRef := searchTitle(isbn:String)searchTitleDB(isbn:String)

itemID := getNewItemID( )

increaseAvailableCount( )

increaseNumOfItem( )

itemRef:= new Item(itemID: String,titleRef:Title)

addItem(itemRef:Item)addItemDB( itemRef:Item)

43Konkuk University

Page 44: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

12. Remove Item

: Librarian :DataBase:Loan:Title :Item: Controller

[isBorrowed( )="false"]

[isBorrowed( )="true"]

removeItem( )

itemRef:=searchItem(itemID:String)searchItemDB(itemID:String)

isBorrowed( )

decreaseNumOfItem( )

decreaseAvailableCount( )

displayMessage("Error")

removeItem(itemRef:Item)removeItemDB(itemRef:Item)

displayMessage("OK")

displayMessage("Error")

[itemRef is invalid]

[itemRef is valid]

44Konkuk University

Page 45: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

12. Update Item

: Librarian : Controller :DataBaseTitle Item

[itemRef is valid]

[itemRef is invalid]

updateItem( )

displayMessage("Error")

updateItem(itemRef:Item)

itemRef:=searchItem(itemID:String)searchItemDB(itemID:String)

updateItemDB(itemRef:Item)

decreaseNumOItem()

[lost = "True"]

decreaseAvailableCount()

increaseNumOfItem()

[lost="False]

increaseAvailableCount()

displayMessage("Ok")

45Konkuk University

Page 46: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

14. Add Borrower

: Librarian :Controller :DataBase: Borrower

[borrowerRef is invalid]

addBorrower( )

displayMessage("OK")

displayMessage("Error")

borrowerRef:=new Borrower(name:String, ssn:String, address:String )

borrowerRef:=searchBorrower(ssn:String)

searchBorrowerDB(ssn:String)

addBorrower(borrowerRef:Borrower)

addBorrowerDB(borrowerRef:Borrower)

[borrowerRef is valid]

46Konkuk University

Page 47: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

15. Remove Borrower

: Librarian : Controller :Database:Title:Borrower :Loan : Reservation

removeBorrower( )

displayMessage("OK")

displayMessage("Error")

borrowerRef:=searchBorrower(ssn:String)searchBorrowerDB(ssn:String)

removeBorrower(borrowerRef:Borrower)removeBorrowerDB(borrowerRef:Borrower)

loanRef:=searchLoan(borrowerRef:Borrower)searchLoanDB(borrowerRef:Borrower )

removeReservation(borrowerRef:Borrower)

removeReservationDB(borrowerRef:Borrower)

displayMessage("Error")

[borrowerRef is invalid]

[borrowerRef is valid]

[loanRef is valid]

[loanRef is invalid]

reservationRef[]:=searchReservation(borrowerRef:Borrower)

searchReservationDB(borrowerRef:Borrower)

titleRef:=*getTitle()

*decreaseReservationCount()

47Konkuk University

Page 48: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

16. Update Borrower

: Librarian : Controller :DatabaseBorrower

updateBorrower( )

displayMessage("OK")

displayMessage("Error")

borrowerRef:=searchBorrower(ssn:String)searchBorrowerDB(ssn:String)

updateBorrower(borrowerRef:Borrower)

updateBorrowerDB(borrowerRef:Borrower)

[borrowerRef is invalid]

[borrowerRef is valid]

48Konkuk University

Page 49: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

17. Log-In

: Librarian : Controller Librarian Database

[valid="True"]

[valid="False"]

logIn( )

displayMessage("OK")

displayMessage("Error")

valid=validate(userID:String,password:String)

validateDB(userID:String,password:String)

49Konkuk University

Page 50: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

18. Log-Out

: Librarian : Controller Librarian

logOut( )

valid=logOut(userID:String)

displayMessage("Error")

[valid="False"]

displayMessage("Ok")

[valid="True"]

50Konkuk University

Page 51: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

19. Count Loans

: Controller : Librarian :Loan

countLoans( )

displayMessage(numOfLoan)

numOfLoan:=getNumOfLoan()

51Konkuk University

Page 52: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2045. Define Design Class Diagram

Define Reports,UI, and Storyboards

2142 RefineSystem Architecture

2143

Define Database Schema

2146

DesignReal Use Cases

2141

DefineInteraction Diagrams

2144

b

a. In parallel with interaction diagramsb. Varied order

Define Design Class Diagrams

2145 a

52Konkuk University

Page 53: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

DatabaseTitle[ ] : MapItem[ ] : MapBorrower[ ] : MapLoan[ ] : MapReservation[ ] : Map

searchTitleDB (isbn : ISBNType) : TitleaddTitleDB (titleRef : Title) : VoidremoveTitleDB (titleRef : Title) : VoidupdateTitleDB (titleRef : Title) : VoidsearchItemDB (itemID : String) : ItemaddItemDB (itemRef : Item) : VoidremoveItemDB (itemRef : Item) : VoidupdateItemDB (itemRef : Item) : VoidsearchBorrowerDB (ssn : String) : BorroweraddBorrowerDB (borrowerRef : Borrower) : VoidremoveBorrowerDB (borrowerRef : Borrower) : VoidupdateBorrowerDB (borrowerRef : Borrower) : VoidsearchLoanDB (itemID : String) : LoansearchLoanDB (borrowerRef : Borrower) : LoanaddLoanDB (loanRef : Loan) : VoidupdateLoanDB (loanRef : Loan) : VoidsearchReservationDB (isbn : ISBNType) : ReservationsearchReservationDB (titleRef : Title) : ReservationsearchReservationDB (borrowerRef : Borrower) : Reservation[ ]addReservationDB (reservationRef : Reservation) : VoidremoveReservationDB (reservationRef : Reservation) : VoidvalidateDB (userID : String, password : String) : Void

Bookauthor : String

Magazinemonth : StringpublishCycle : String

0..1

1

1

0..*

1*

1*Loan

checkInDate : DatecheckOutDate : DatelateReturnFee : IntegervalidLoan : Boolean$ LoanCount : Long

setValidLoan (flag : Booean) : VoidcalculateLateReturnFee (loanPeriod : Integer) : IntergercalculateReplacementFee (price : Float) : IntegersearchLoan (itemID : String) : LoansearchLoan (borrowerRef : Borrower) : LoanaddLoan (loanRef : Loan) : VoidupdateLoan (loanRef : Loan) : VoiddecreaseLoanCount () : VoidincreaseLoanCount () : VoidgetNumOfLoan () : VoidgetItem (LoanRef : Loan) : Item

1

*

1

*

Librarianname : StringuserID : Stringpassword : StringlogInFlag : Boolean

validate (userID : String, password : String)logOut (userID : String)

0..*

1

Borrowername : Stringssn : Stringaddress : StringreservationCount : IntegerloanCount : Integer

increaseLoanCount () : VoiddecreaseLoanCount () : VoidincreaseReservationCount () : VoiddecreaseReservationCount () : VoidsearchBorrower (ssn : String) : BorroweraddBorrower (borrowerRef : Borrower) : VoidremoveBorrower (ssn : String) : VoidupdateBorrower (borrowerRef : Borrower) : Void

1

0..*

Has

1

*

1

1..*

ItemitemID : Stringavailable : Booleanlost : Boolean

isBorrowed () : BooleansetLost (flag : Boolean) : VoidsearchItem (itemID : String) : ItemaddItem (itemRef : Item) : VoidupdateItem (itemRef : Item) : VoidremoveItem (itemRef : Item) : VoidsetAbailable (flag : Boolean) : VoidgetTitle (itemRef : Item) : Title

0..1

1Refer To

11* Manages

1*Manages

1

*

Manages

1

*

Manages

*

1

Titlename : Stringisbn : ISBNTypeprice : FloatloanPeriod : IntegernumOfItem : IntegeravailableCount ; IntegerreservationCount : Integer

increseAvailableCount () : VoiddecreaseAvailableCount () : VoidincreaseNumOfItem () : VoiddecreseNumOfItem () : VoidgetNumOfItem () : IntegergetPrice () : FloatgetLoanPeriod () : IngetergetNewItemID () : StringsearchTitle (isbn : ISBNType) : TitleaddTitle (titleRef : Title) : VoidremoveTitle (titleRef : Title) : VoidupdateTitle (titleRef : Title) : VoidisReserved (titleRef : Title) : BooleanincreaseReservationCount () : VoiddecreaseReservationCount () : Void

1

1..*

Copy of

1 *Manages

0..*

ReservationreserveDate : Date

searchReservation (isbn : ISBNType) : ReservationsearchReservation (titleRef : Title) : ReservationsearchReservation (borrowerRef : Borrower) : Reservation[ ]addReservation (reservationRef : Reservation) : VoidremoveReservation (reservatoinRef : Reservation) : VoidprintNotifyCard (titleRef : Title) : VoidprintCard (reservationRef : Reservation) : VoidgetTitle (reservationRef : Reservation) : Title

0..*

1 Has

1

*

Manages

1

0..*

Refer to

53Konkuk University

Page 54: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Activity 2046. Define Database Schema

Define Reports,UI, and Storyboards

2142 RefineSystem Architecture

2143

Define Database Schema

2146

DesignReal Use Cases

2141

DefineInteraction Diagrams

2144

b

a. In parallel with interaction diagramsb. Varied order

Define Design Class Diagrams

2145 a

54Konkuk University

Page 55: dslab.konkuk.ac.krdslab.konkuk.ac.kr/Class/2011/11SMA/Lecture Note/Case Study - LM… · 1. (A) A librarian inputs an item’s ID 2. (S) Find a corresponding loan 3. (S) Get item

Phase 2040. Design

• Phase 2040 Activities

Define Reports,UI, and Storyboards

2142 RefineSystem Architecture

2143

Define Database Schema

2146

DesignReal Use Cases

2141

DefineInteraction Diagrams

2144

b

Design2140

a. In parallel with interaction diagramsb. Varied order

Define Design Class Diagrams

2145 a

55Konkuk University