package admin;

import gradebook.ClassGradebook;
import java.util.Collection;

/**
 * Derived from Section 2.1.2 of the requirements.
 */
public abstract class Login {
	/**
     * User's login name.
     */
	String calPolyUserName;
	
	/**
     * User's login password.
     */
	String password;
	
	/**
     * Collection of gradebooks that the user can choose from.
     */
	Collection<ClassGradebook> selectClass;
}