package no.divvun.Analyzer.Communication;

public class ParadigmRequest extends Request {

	private String word;
	private String POS;
	
	public ParadigmRequest() {}
	
	/**
	 * @return Returns the pOS.
	 */
	public String getPOS() {
		return POS;
	}

	/**
	 * @param pos The pOS to set.
	 */
	public void setPOS(String pos) {
		POS = pos;
	}

	/**
	 * @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 5;
	}

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

}
