This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: ejbSelect and findBy methodadrian.brock Nov 18, 2002 2:12 AM (in response to eric138)ejbFindBy returns primary key(s) of the 
 entity bean. It is the implementation of findBy
 in the home interface and can be used by clients
 to obtain bean proxies. The container turns the
 primary keys into remote/local interface implementations.
 e.g.
 MyRemote bean = home.findByNickName("eric138");
 ejbSelect can return any type of bean
 (not necessarily the same entity where it is defined)
 or cmp-field. The entity uses it internally.
 e.g.
 Collection emails = bean.getEmails(Date date);
 // Get the user's e-mails for a date
 public Collection getEmails(Date date)
 {
 return ejbSelectEmails(date);
 }
 Regards,
 Adrian
- 
        
 
    