00001 /* Package Web Test Tools 00002 * Copyright (C) 2001 "Artur Hefczyc" <kobit@users.sourceforge.net> 00003 * 00004 * This program is free software; you can redistribute it and/or modify 00005 * it under the terms of the GNU Lesser General Public License as published 00006 * by the Free Software Foundation; either version 2 of the License, or 00007 * (at your option) any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU Lesser General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Lesser General Public License 00015 * along with this program; if not, write to the Free Software Foundation, 00016 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00017 * 00018 * $Id: ConnectionHandlerIfc.java,v 1.1 2002/11/29 15:18:40 kobit Exp $ 00019 * $Author: kobit $ 00020 * $Date: 2002/11/29 15:18:40 $ 00021 */ 00022 00023 package wttools.remotecons.ifc; 00024 00025 import java.net.Socket; 00026 import java.util.List; 00027 00041 public interface ConnectionHandlerIfc { 00042 00057 void handleNewConnection(Socket connection_socket, List command_handlers); 00058 00067 void handleException(Exception exc); 00068 00069 }// ConnectionHandlerIfc 00070 /* 00071 * Changes in file: 00072 * 00073 * $Log: ConnectionHandlerIfc.java,v $ 00074 * Revision 1.1 2002/11/29 15:18:40 kobit 00075 * Refactoring packages, thanks to RefactorIT 00076 * 00077 * Revision 1.6 2002/01/21 16:30:19 kobit 00078 * Commenting out code in progress 00079 * 00080 * Revision 1.5 2002/01/18 14:18:46 kobit 00081 * Next part of javadoc documentation 00082 * 00083 * Revision 1.4 2002/01/17 22:37:44 kobit 00084 * Javadoc comments for classes in progress... 00085 * 00086 * Revision 1.3 2002/01/13 17:27:13 kobit 00087 * Corrected interface for external command handlers 00088 * 00089 * Revision 1.2 2002/01/12 12:31:26 kobit 00090 * Updated CVS keyword in all files 00091 * 00092 * 00093 */