1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package org.jboss.mq.il.oil2;8 9 /**10 * 11 *12 * @author <a HREF="mailto:hiram.chirino@jboss.org">Hiram Chirino</a>13 * @version $Revision: 1.2 $14 */15 public interface OIL2RequestListner16 {17 void handleRequest(OIL2Request request);18 void handleConnectionException(Exception e); 19 }20