package ejava.examples.ejb.session.bean;

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

/**
* This interface defines the remote and only home interface of the Teller
* Stateless Session Bean.
*/
public interface TellerRemoteHome extends EJBHome {
   public TellerRemote create() throws CreateException, RemoteException;
}

