Question
The Technology is Java Practice: You are required to design and implement an application that keeps track of a meeting scheduling system (MSS). Your MSS
The Technology is Java
Practice:
You are required to design and implement an application that keeps track of a meeting scheduling system (MSS). Your MSS keeps track of meetings schedule and which people are in what meeting in which room. The program is not required to perform scheduling, rather is is responsible for maintaining the schedule. For simplicity, assume your application is maintaining the schedule for only one day and a meeting can only fall in traditional 9-5 business hours.
Following are general guidelines:
1. Each room has a number. A room should keep track of all meetings held in it.
2. Each meeting has a name, time and room. A meeting should keep track of all people people attending the meeting.
3. A person has a first name, a last name and a phone number.
4. A person cannot be attending more than one meeting in any one-hour slot.
5. A room cannot hold more than one meeting at any one-hour slot.
Your application should be able to provide the following functionaries:
1. When the application starts, the user can specify the number of rooms available for meetings.
2. Rooms can be added and deleted by the user. (To delete a room, no meetings should be scheduled in this room).
3. Participants can be added and deleted by the user. (To delete a participant, he should not be assigned to any meeting).
4. A meeting can be added and deleted by the user. (To delete a meeting, no participant should be assigned to any meeting).
5. The user can create meetings by specifying a room number and the participants.
6. Upon request the system should display all meetings in the day.
7. Upon request the system should display all meetings in a room.
8. Upon request the system should display all meetings being attended by a single user.
9. Upon request the system should display all meetings at a specific time slot.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started