package com.tootsville.joshua.client.util;

import com.google.gwt.user.client.rpc.IsSerializable;

public class Person implements IsSerializable {
	private String answer = "";
	private String displayName = "";
	private String givenName = "";
	private boolean isCanContact = false;
	private String mail = "";
	private String password = "";
	private String question = "";
	private int userID = 0;

	public String getAnswer () {
		// default getter (theys, Sep 30, 2009)
		return answer;
	}

	public String getDisplayName () {
		// default getter (theys, Sep 30, 2009)
		return displayName;
	}

	public String getGivenName () {
		// default getter (theys, Sep 30, 2009)
		return givenName;
	}

	public String getMail () {
		// default getter (theys, Sep 30, 2009)
		return mail;
	}

	public String getPassword () {
		// default getter (theys, Sep 30, 2009)
		return password;
	}

	public String getQuestion () {
		// default getter (theys, Sep 30, 2009)
		return question;
	}

	public int getUserID () {
		// default getter (theys, Sep 30, 2009)
		return userID;
	}

	public boolean isCanContact () {
		// default getter (theys, Sep 30, 2009)
		return isCanContact;
	}

	public void setAnswer (final String answer1) {
		// default setter (theys, Sep 30, 2009)
		answer = answer1;
	}

	public void setCanContact (final boolean isCanContact1) {
		// default setter (theys, Sep 30, 2009)
		isCanContact = isCanContact1;
	}

	public void setDisplayName (final String displayName1) {
		// default setter (theys, Sep 30, 2009)
		displayName = displayName1;
	}

	public void setGivenName (final String givenName1) {
		// default setter (theys, Sep 30, 2009)
		givenName = givenName1;
	}

	public void setMail (final String mail1) {
		// default setter (theys, Sep 30, 2009)
		mail = mail1;
	}

	public void setPassword (final String password1) {
		// default setter (theys, Sep 30, 2009)
		password = password1;
	}

	public void setQuestion (final String question1) {
		// default setter (theys, Sep 30, 2009)
		question = question1;
	}

	public void setUserID (final int userID1) {
		// default setter (theys, Sep 30, 2009)
		userID = userID1;
	}

}
