I mean the book Head First
EJB (HEF).
Think about the following operations, and figure out which of the two client interfaces (component or home), is better suited for each operation.
1 make a new customer
2 change an existing customer's phone number
3 find all the customers in pleasantville
4 delete all customers previously declared 'inactive'
5 delete a specific customer
6 get the street address of a specific customer
I was thinking about :
Operations 1, 3 and 4 for home interface, and operations 2, 5 and 6 for component interface.