
/**
 * interface Protocol.
 * 
 * @author Laurent Dehoey I177416 
 * @version 23/01/2003
 */

public interface Protocol
{
	/**
	 * Le Provider de Service à un Socket Client
	 * @param s java.net.Socket la socket cliente
	 * @return void
	 */
	public void service(java.net.Socket s) throws java.lang.Exception;
}
