package gcom.cadastro.cliente; import java.rmi.RemoteException; import javax.ejb.CreateException; /** * Description of the Interface * * @author Administrador * @created 25 de Abril de 2005 */ public interface ControladorClienteHome extends javax.ejb.EJBHome { /** * Description of the Method * * @return Description of the Return Value * @exception CreateException * Description of the Exception * @exception RemoteException * Description of the Exception */ public ControladorClienteRemote create() throws CreateException, RemoteException; }