package scheduler.ScheduleDB; import scheduler.RoomDB.*; import scheduler.InstructorDB.*; import scheduler.CourseDB.*; import scheduler.ScheduleEntry.*; import scheduler.Attributes.*; import java.util.Collection; /** * * The users database contains a username and password pairing fo *r each user in the system as well as a type to determine whether they are an instructor (0) or scheduler (1). * * @author * @version * **/ public class User { /** Default Constructor **/ public User() { } protected String userName; protected String password; protected String type; }