01: package com.titan.customer;
02:
03: import java.rmi.RemoteException;
04: import javax.ejb.CreateException;
05: import javax.ejb.FinderException;
06:
07: public interface CustomerHomeRemote extends javax.ejb.EJBHome {
08:
09: public CustomerRemote create(Integer id) throws CreateException,
10: RemoteException;
11:
12: public CustomerRemote findByPrimaryKey(Integer id)
13: throws FinderException, RemoteException;
14:
15: }
|