1 package com.titan.customer;2 3 import java.rmi.RemoteException;4 import javax.ejb.CreateException;5 import javax.ejb.FinderException;6 7 public interface CustomerHomeRemote extends javax.ejb.EJBHome {8 9 public CustomerRemote create(Integer id) throws CreateException, RemoteException;10 public CustomerRemote findByPrimaryKey(Integer id) throws FinderException, RemoteException;11 12 }13 14