new Integer(2013));
student3.setId(new Long(12L));
Student student4 = new Student("Jason", "Borough", "C14Jason.Borough",
new Integer(2013));
student4.setId(new Long(13L));
Section section1 = new Section("M3A");
section1.setId(new Long(10L));
Section section2 = new Section("T2B");
section2.setId(new Long(11L));
Instructor instructor1 = new Instructor("Sam", "Pierce", "Sam.Pierce");
instructor1.setDomainAccount(instructor1.getWebID());
instructor1.setId(new Long(14L));
Instructor instructor2 = new Instructor("Jenny", "Conners", "Jenny.Conners");
instructor2.setDomainAccount(instructor2.getWebID());
instructor2.setId(new Long(15L));
// Set the Instructors for Sections 1 & 2
section1.setInstructor(instructor1);
section2.setInstructor(instructor2);
section1.setCourse(course);
section2.setCourse(course);
// Add Instructors to Course
course.addInstructor(instructor1);
course.addInstructor(instructor2);
// Add Students 1 & 2 to Section 1
section1.addStudent(student1);
student1.addSection(section1);
section1.addStudent(student2);
student2.addSection(section1);
// Add Students 3 & 4 to Section 2
section2.addStudent(student3);
student3.addSection(section2);
section2.addStudent(student4);
student4.addSection(section2);
// Add Sections 1 & 2 to Course
course.addSection(section1);
course.addSection(section2);