package caltool.schedule;

/****
 *
 * Priority indicates whether an appointment is a must or if it is optional.
 * This information is used to indicate the general importance of an
 * appointment to the user.  The operational use of Priority is in the
 * ScheduleMeeting operation, where the meeting scheduler can elect to consider
 * optional appointments as allowable times for a meeting.
 *
 * @author Gene Fisher (gfisher@calpoly.edu)
 * @version 15jan10
 *
 */

public enum Priority {


    /** Indicates a scheduled item is 'Must' priority */
    Must,

    /** Indicates a scheduled item is 'Optional' priority. */
    Optional

}