package caltool.model.schedule; /**** * * A meeting request has all the components of a meeting plus three additional * components to specify the latest dates and time at which the meeting can be * scheduled. A meeting request is used to specify a range of possible meeting * times, to allow scheduling alternatives to be considered. The description * of the ScheduleMeeting operation has further details on how meeting requests * are handled. * */ public class MeetingRequest extends Meeting { /** * Construct an empty MeetingRequest. */ public MeetingRequest() { } }