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.http;
04:
05: import java.net.Socket;
06:
07: public interface ResponseSender {
08: public void send(byte[] bytes) throws Exception;
09:
10: public void close() throws Exception;
11:
12: public Socket getSocket() throws Exception; // TODO-MdM maybe get rid of
13: // this method.
14: }
|