01: // InboundCA.java
02:
03: package org.objectweb.jonas.jtests.beans.jca15;
04:
05: import java.rmi.RemoteException;
06: import javax.ejb.EJBObject;
07:
08: /**
09: * InboundCA remote interface
10: */
11: public interface InboundCA extends EJBObject {
12: public void method1(java.lang.String s, java.lang.String t)
13: throws RemoteException, Exception;
14:
15: public void closeUp(int w) throws RemoteException;
16:
17: public String getEIS_URL() throws RemoteException, Exception;
18:
19: public boolean deliverMsg(String s) throws RemoteException,
20: Exception;
21:
22: }
|