October 2003
Beginner
734 pages
16h 56m
English
package headfirst;
import javax.ejb.*;
import java.rmi.RemoteException;
import java.util.Collection;
public interface CustomerHome extends EJBHome {
public Customer create(String last, String first) throws CreateException, RemoteException;
public Customer findByPrimaryKey(String key) throws FinderException, RemoteException;
public Collection findByCity(String city) throws FinderException, RemoteException;
}Read now
Unlock full access