package no.divvun.Analyzer.Communication;

public class GenerateRequest extends Request {

	private String word;
	
	public GenerateRequest() {}

	/**
	 * @return Returns the word.
	 */
	public String getWord() {
		return word;
	}

	/**
	 * @param word The word to set.
	 */
	public void setWord(String word) {
		this.word = word;
	}
	
	public int getType() {
		return 6;
	}

	public String toXML() {
		return XMLRequestFactory.toXML(this);
	}
}
