1 25 26 28 package org.objectweb.jonas.jtests.beans.message; 29 30 import java.rmi.RemoteException ; 31 import javax.ejb.EJBObject ; 32 33 36 public interface MRecord extends EJBObject { 37 public String getUUID() throws RemoteException ; 38 public String getDest() throws RemoteException ; 39 public int getValue() throws RemoteException ; 40 public int getCount() throws RemoteException ; 41 public void updateCount() throws RemoteException ; 42 public String getMDB() throws RemoteException ; 43 } 44 | Popular Tags |