Example 5 - User Home Interface
    public interface UserHome extends EJBHome 
    {
        public User create(String Id, String pw) 
           throws RemoteException, CreateException;
        public User findByPrimaryKey(UserPK pk) 
           throws RemoteException, FinderException;
        public Enumeration findAllUsers() 
           throws RemoteException, FinderException;
    }
            

Next Slide >>