01: // runtimeCA.java
02:
03: package org.objectweb.jonas.jtests.beans.j2eeca;
04:
05: import java.rmi.RemoteException;
06: import javax.ejb.EJBObject;
07:
08: /**
09: * runtimeCA remote interface
10: */
11: public interface runtimeCA extends EJBObject {
12: //public void method1() throws RemoteException;
13: public void method1(java.lang.String s, java.lang.String t)
14: throws RemoteException, Exception;
15:
16: public int getMCF_Pwriter() throws RemoteException;
17:
18: public int getMC_Pwriter() throws RemoteException;
19:
20: public void closeUp(int w) throws RemoteException;
21:
22: public String getResAuth() throws RemoteException;
23:
24: public String getSecurityPassword() throws RemoteException;
25:
26: public String getSecurityUserName() throws RemoteException;
27:
28: public void setResAuth(java.lang.String res_auth)
29: throws RemoteException;
30:
31: }
|