according to my understanding finder methods return EJBObjects. if ejb-ql is like select Object(employee) from employee then it is suitable for finder method.
what if ejb-ql is like select employee.name from employee
The finder method can return single EJBObject reference or collection of EJBObject references. So the query "select employee.name from employee" is not valid for the finder method as it gives single field value.