/*
 * @author  : Elangovan
 * @version : 1.0
 *
 * Development Environment : Oracle9i JDeveloper
 * Name of the File        : MailServiceHome.java
 *
 * Creation / Modification History
 *    Elangovan           26-Apr-2002        Created
 *
 */
package oracle.otnsamples.ibfbs.admin.ejb;

import javax.ejb.EJBHome;
import java.rmi.RemoteException;
import javax.ejb.CreateException;

/**
 * This interface is the home interface of the MailService Bean.
 *
 * @see MailServiceBean.java
 * @see MailService.java
 */
public interface MailServiceHome extends EJBHome {

  /**
   * Method to get a remote handle of MailService. 
   *
   * @return remote handle of MailService 
   * @exception RemoteException if remote access fails
   * @exception CreateException if create fails
   * @since 1.0
   */
  public MailService create() 
      throws RemoteException, CreateException;
  
}