KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > jtests > beans > hotdeploy > HotDeploy


1 // HotDeploy.java
2

3 package org.objectweb.jonas.jtests.beans.hotdeploy;
4
5 import java.rmi.RemoteException;
6 import javax.ejb.EJBObject;
7
8 /**
9  * HotDeploy remote interface
10  */

11 public interface HotDeploy extends EJBObject {
12     public String getEnvString() throws RemoteException;
13     public int getVersionNumber() throws RemoteException;
14     public int getHelperClassVersionNumber() throws RemoteException;
15 }
16
Popular Tags