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