package testtool.StudentFunctionality;

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

import java.util.Collection;

/**
 *
 * 
			A server is a list of students, a ProctorTest to hand out to each of
			the students, and a list of all the tests being taken by students.
		 * 
 * @author 
 * @version 
 *
 **/

public class Server {

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

     }

     protected Collection<Student> users;

     protected ProctorTest ptest;

     protected Collection<TakenTest> tests;

}