| ExchangeHome.java |
/*
* @author : Elangovan
* @version : 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the File : ExchangeHome.java
*
* Creation / Modification History
* Elangovan 26-Apr-2002 Created
*
*/
package oracle.otnsamples.ibfbs.admin.ejb;
import javax.ejb.EJBHome;
import javax.ejb.CreateException;
import java.rmi.RemoteException;
/**
* This is the Home interface for Exchange Service.
*/
public interface ExchangeHome extends EJBHome {
/**
* Method to get a remote handle of Exchange Service.
*
* @return remote handle of Exchange Service.
* @exception RemoteException if remote access fails
* @exception CreateException if create fails
*/
public Exchange create()
throws RemoteException, CreateException;
}