1 22 package org.jboss.test.jmsra.bean; 23 24 import javax.ejb.EJBObject ; 25 import java.rmi.RemoteException ; 26 27 28 public interface Publisher extends EJBObject { 29 public static final String JMS_MESSAGE_NR = "MESSAGE_NR"; 30 public void simple(int messageNr) throws RemoteException ; 31 public void simpleFail(int messageNr) throws RemoteException ; 32 public void beanOk(int messageNr) throws RemoteException ; 33 public void beanError(int messageNr) throws RemoteException ; 34 } 35 | Popular Tags |