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 import org.jboss.jms.message.JBossMessage;10 11 /**12 * A message reference13 * 14 * @author <a HREF="mailto:adrian@jboss.org>Adrian Brock</a>15 * @version $Revision: 1.2 $16 */17 public interface MessageReference18 {19 // Constants -----------------------------------------------------20 21 // Public --------------------------------------------------------22 23 JBossMessage getMessage() throws Exception ;24 25 String getMessageID() throws Exception ;26 27 int getPriority() throws Exception ;28 }29