package testtool.StudentFunctionality;

import testtool.Tests.*;
import testtool.Database.*;

import java.util.Collection;

/**
 *
 * 
			A Student object is made up of a user id and matching password.
			This
 * allows the student to login and also allows the proctor to
			set which students are going to take the test.
		 * 
 * @author 
 * @version 
 *
 **/

public class Student {

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

     }

     protected String fname;

     protected String lname;

     protected String uid;

     protected String passwd;

}