01: // BeanAccessor.java
02:
03: package org.objectweb.jonas.jtests.beans.mcontext;
04:
05: import java.rmi.RemoteException;
06: import javax.ejb.EJBObject;
07:
08: /**
09: * BeanAccessor remote interface
10: */
11: public interface BeanAccessor extends EJBObject {
12: public boolean localBeanHasMessageContext() throws RemoteException;
13:
14: }
|