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.jms.server;8 9 /**10 * Delivers the message11 * 12 * @author <a HREF="mailto:adrian@jboss.org">Adrian Brock</a>13 * @version $Revision: 1.2 $14 */15 public interface DeliveryEndpoint16 {17 void deliver(MessageReference message) throws Exception ;18 }