package scheduler.ScheduleDB;

import scheduler.RoomDB.*;
import scheduler.InstructorDB.*;
import scheduler.CourseDB.*;
import scheduler.ScheduleEntry.*;
import scheduler.Attributes.*;

import java.util.Collection;

/**
 *
 * 
        The settings object contains the global settings for an instance
        of the scheduling tool.
     * 
 * @author 
 * @version 
 *
 **/

public class Settings {

     /** Default Constructor **/
     public Settings() {

     }

     protected String centralServer;

     protected String onlineWksp;

     protected String offlineWksp;

     protected String userName;

     protected String password;

}