package no.divvun.Analyzer.Communication;

public class AnalyzeRequest extends Request {
	
	private String word;
	
	public AnalyzeRequest() {}
	
	/**
	 * @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 2;
	}
	
	public String toXML() {
		return XMLRequestFactory.toXML(this);
	}
}
