package no.divvun.Analyzer.Communication; public class HyphenateRequest extends Request { private String word; public HyphenateRequest() {} /** * @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() { // TODO Auto-generated method stub return 7; } public String toXML() { return XMLRequestFactory.toXML(this); } }