01: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
02: // Released under the terms of the GNU General Public License version 2 or later.
03: package fitnesse;
04:
05: import fitnesse.http.Request;
06: import fitnesse.http.Response;
07:
08: public interface Responder {
09: public Response makeResponse(FitNesseContext context,
10: Request request) throws Exception;
11: }
|