/* * Copyright (C) 2001 - 2005 ZJU Online Judge, All Rights Reserved. */ package cn.edu.zju.acm.onlinejudge.form; /** * <p> * RegisterForm. * </p> * * @author ZOJDEV * @version 2.0 */ public class RegisterForm { /** * The handle. */ private String handle = null; /** * The nick. */ private String nick = null; /** * The password. */ private String password = null; /** * The confirmPassword. */ private String confirmPassword = null; /** * The email. */ private String email = null; /** * The firstName. */ private String firstName = null; /** * The lastName. */ private String lastName = null; /** * The birthday. */ private String birthday = null; /** * The gender. */ private String gender = null; /** * The addressLine1. */ private String addressLine1 = null; /** * The addressLine2. */ private String addressLine2 = null; /** * The addressLine3. */ private String addressLine3 = null; /** * The province. */ private String province = null; /** * The city. */ private String city = null; /** * The country. */ private String country = null; /** * The zipCode. */ private String zipCode = null; /** * The phone. */ private String phone = null; /** * The school. */ private String school = null; /** * The graduateYear. */ private String graduateYear = null; /** * The major. */ private String major = null; /** * The studentNumber. */ private String studentNumber = null; /** * The graduateStudent. */ private String graduateStudent = null; /** * Empty constructor. */ public Register() { // Empty constructor } /** * Sets the handle. * * @prama handle the handle to set. */ public void setHandle(String handle) { this.handle = handle; } /** * Gets the handle. * * @return the handle. */ public String getHandle() { return handle; } /** * Sets the nick. * * @prama nick the nick to set. */ public void setNick(String nick) { this.nick = nick; } /** * Gets the nick. * * @return the nick. */ public String getNick() { return nick; } /** * Sets the password. * * @prama password the password to set. */ public void setPassword(String password) { this.password = password; } /** * Gets the password. * * @return the password. */ public String getPassword() { return password; } /** * Sets the confirmPassword. * * @prama confirmPassword the confirmPassword to set. */ public void setConfirmPassword(String confirmPassword) { this.confirmPassword = confirmPassword; } /** * Gets the confirmPassword. * * @return the confirmPassword. */ public String getConfirmPassword() { return confirmPassword; } /** * Sets the email. * * @prama email the email to set. */ public void setEmail(String email) { this.email = email; } /** * Gets the email. * * @return the email. */ public String getEmail() { return email; } /** * Sets the firstName. * * @prama firstName the firstName to set. */ public void setFirstName(String firstName) { this.firstName = firstName; } /** * Gets the firstName. * * @return the firstName. */ public String getFirstName() { return firstName; } /** * Sets the lastName. * * @prama lastName the lastName to set. */ public void setLastName(String lastName) { this.lastName = lastName; } /** * Gets the lastName. * * @return the lastName. */ public String getLastName() { return lastName; } /** * Sets the birthday. * * @prama birthday the birthday to set. */ public void setBirthday(String birthday) { this.birthday = birthday; } /** * Gets the birthday. * * @return the birthday. */ public String getBirthday() { return birthday; } /** * Sets the gender. * * @prama gender the gender to set. */ public void setGender(String gender) { this.gender = gender; } /** * Gets the gender. * * @return the gender. */ public String getGender() { return gender; } /** * Sets the addressLine1. * * @prama addressLine1 the addressLine1 to set. */ public void setAddressLine1(String addressLine1) { this.addressLine1 = addressLine1; } /** * Gets the addressLine1. * * @return the addressLine1. */ public String getAddressLine1() { return addressLine1; } /** * Sets the addressLine2. * * @prama addressLine2 the addressLine2 to set. */ public void setAddressLine2(String addressLine2) { this.addressLine2 = addressLine2; } /** * Gets the addressLine2. * * @return the addressLine2. */ public String getAddressLine2() { return addressLine2; } /** * Sets the addressLine3. * * @prama addressLine3 the addressLine3 to set. */ public void setAddressLine3(String addressLine3) { this.addressLine3 = addressLine3; } /** * Gets the addressLine3. * * @return the addressLine3. */ public String getAddressLine3() { return addressLine3; } /** * Sets the province. * * @prama province the province to set. */ public void setProvince(String province) { this.province = province; } /** * Gets the province. * * @return the province. */ public String getProvince() { return province; } /** * Sets the city. * * @prama city the city to set. */ public void setCity(String city) { this.city = city; } /** * Gets the city. * * @return the city. */ public String getCity() { return city; } /** * Sets the country. * * @prama country the country to set. */ public void setCountry(String country) { this.country = country; } /** * Gets the country. * * @return the country. */ public String getCountry() { return country; } /** * Sets the zipCode. * * @prama zipCode the zipCode to set. */ public void setZipCode(String zipCode) { this.zipCode = zipCode; } /** * Gets the zipCode. * * @return the zipCode. */ public String getZipCode() { return zipCode; } /** * Sets the phone. * * @prama phone the phone to set. */ public void setPhone(String phone) { this.phone = phone; } /** * Gets the phone. * * @return the phone. */ public String getPhone() { return phone; } /** * Sets the school. * * @prama school the school to set. */ public void setSchool(String school) { this.school = school; } /** * Gets the school. * * @return the school. */ public String getSchool() { return school; } /** * Sets the graduateYear. * * @prama graduateYear the graduateYear to set. */ public void setGraduateYear(String graduateYear) { this.graduateYear = graduateYear; } /** * Gets the graduateYear. * * @return the graduateYear. */ public String getGraduateYear() { return graduateYear; } /** * Sets the major. * * @prama major the major to set. */ public void setMajor(String major) { this.major = major; } /** * Gets the major. * * @return the major. */ public String getMajor() { return major; } /** * Sets the studentNumber. * * @prama studentNumber the studentNumber to set. */ public void setStudentNumber(String studentNumber) { this.studentNumber = studentNumber; } /** * Gets the studentNumber. * * @return the studentNumber. */ public String getStudentNumber() { return studentNumber; } /** * Sets the graduateStudent. * * @prama graduateStudent the graduateStudent to set. */ public void setGraduateStudent(String graduateStudent) { this.graduateStudent = graduateStudent; } /** * Gets the graduateStudent. * * @return the graduateStudent. */ public String getGraduateStudent() { return graduateStudent; } }