01: // connectorCA.java
02:
03: package org.objectweb.jonas.jtests.beans.j2eeca;
04:
05: import java.rmi.RemoteException;
06: import javax.ejb.EJBObject;
07:
08: /**
09: * connectorCA remote interface
10: */
11: public interface connectorCA 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 boolean isConnectionSpec() throws RemoteException;
18:
19: public boolean isConnection() throws RemoteException;
20:
21: public boolean isInteraction() throws RemoteException;
22:
23: public String getConnectionProduct() throws RemoteException,
24: Exception;
25:
26: public String getServerName() throws RemoteException, Exception;
27:
28: public String getProtocolProperty() throws RemoteException,
29: Exception;
30:
31: public boolean getCMInstance() throws RemoteException;
32:
33: public void setMatchNull(boolean b) throws RemoteException;
34:
35: public int cntListeners() throws RemoteException;
36:
37: public int getMCF_Pwriter() throws RemoteException;
38:
39: public int getMC_Pwriter() throws RemoteException;
40: }
|