package buzzerproxy.handler; import java.util.List; import buzzerproxy.ResultContainer; /** * @author M. Friedeboldt */ public interface QuestionInterface { /** * @param xmlRequest * @return * @throws Exception */ public List request(String xmlRequest) throws Exception; /** * Gibt die Version der Configuration zurück * @return */ public String getConfigXMLVersion(); /** * Gibt die XML für die Konfiguration zurück * @return */ public String getConfigurationXML(); /** * Gib die beliebtesten Suchwoerter zurueck * @return */ public String getSearchKeywords(); }