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; }