01: package fitnesse.responders;
02:
03: import fitnesse.FitNesseContext;
04: import fitnesse.Responder;
05: import fitnesse.http.Request;
06: import fitnesse.http.Response;
07:
08: public class STIQResultResponder implements Responder {
09:
10: public static final String STIQ_RESULT_URL = "STIQResults";
11: private static Request result = null;
12:
13: public Response makeResponse(FitNesseContext context,
14: Request request) throws Exception {
15: result = request;
16: return new DefaultResponder()
17: .responseWith("Automated execution results were received.");
18: }
19:
20: public static Request getResult() {
21: return result;
22: }
23:
24: }
|