ICT2106 Software Design Week 9, Tutorial – AY22/23, Tri 2 SIT Internal WEEK 9 - TUTORIAL P RINCIPLES OF D ETAILED D ESIGN Objectives - To understand and apply the S.O.L.I.D. design principles - To apply S.O.L.I.D design principles in your project 1 UNDERSTAND AND APPLY SOLID DESIGN PRINCIPLES The following exercises are aimed to help you understand and apply the SOLID design principles taught in the lectures. Then, towards the end of today’s lab, you are expected to apply these techniques on your team project for the project deliverables. Exercise 1: The UML class diagram below shows part of the design for a program intended to manage the inventory of a clothing store. Does this design satisfy all of the S.O.L.I.D. design principles? Which ones does it not satisfy? Re-design the classes so that they do satisfy the principles. Exercise 2: Suppose you are developing an application that deals with user management (creating user, managing passwords, etc). After every user management task, you wish to send notification to the user as well as to the administrator about the activity performed. The following code shows snippets of the implementation. The EmailNotifier class has just one method – Notify() that accepts an email address and a notification message. The class sends an email to the specified address notifying the user of the change. The UserManage r +GetFabricType() +GetWaistSize() +GetChestSize() AbstractClothingItem Shirt +GetLength() Pants Socks Visual Paradigm Professional(A88520(Singapore Institute of Technology)) ICT2106 Software Design Week 9, Tutorial – AY22/23, Tri 2 SIT Internal class declares an instance of EmailNotifier class and uses it in methods such as CreateUser () and ChangePassword (). Which SOLID principles are violated in the above implementation? Describe how the design flaws can be corrected. 2 TEAM PROJECT Now that you have a better understanding in applying SOLID design principles to small case studies, you are expected to spend the rest of the lab session to apply the same SOLID principles to design your team project. Please be reminded that although this lab exercise is not assessed or graded, the content covered is examined in your Team Project Deliverables, Quizzes and exams. 3 REFERENCES Carlos E. Otero, Software Engineering Design: Theory and Practice, Auerbach Books, Boca Raton, Florida, 2012.