01: // HotDeploy.java
02:
03: package org.objectweb.jonas.jtests.beans.hotdeploy;
04:
05: import java.rmi.RemoteException;
06: import javax.ejb.EJBObject;
07:
08: /**
09: * HotDeploy remote interface
10: */
11: public interface HotDeploy extends EJBObject {
12: public String getEnvString() throws RemoteException;
13:
14: public int getVersionNumber() throws RemoteException;
15:
16: public int getHelperClassVersionNumber() throws RemoteException;
17: }
|