1 25 26 package org.objectweb.jonas.jtests.beans.message; 27 28 import java.rmi.RemoteException ; 29 import javax.ejb.EJBObject ; 30 31 34 public interface Sender1_2 extends EJBObject { 35 36 44 void sendOnDestinationWithTxBeforeSession(String dest, 45 int val, 46 int nb, 47 boolean commit) throws RemoteException ; 48 49 57 58 void sendOnDestinationWithTxAfterSession(String dest, 59 int val, 60 int nb, 61 boolean commit) throws RemoteException ; 62 69 int check(int val, int nb, int sec) throws RemoteException ; 70 71 75 void clean(int val) throws RemoteException ; 76 } 77 | Popular Tags |