I have a Home Interface like this:
package com.wiley.compBooks.ecommerece;
import javax.ejb.*;
import java.rmi.RemoteException;
import java.util.Enumeration;
public interface QuoteHome extends EJBHome
{
public Quote create(Cutomer customer)
throws CreateException,RemoteException;
}
when I compile this it definitely asks for Cutommer cannot be resolved and
If I put import com.wiley.compBooks.ecommerce.Customer then this works
Is this the correct way to use beans.....
thanx in Advance
--
--------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
List Help?: [EMAIL PROTECTED]