1. Which of the following methods can be called from the code of a stateless session
bean�s client?
a. ejbCreate()
b. remove()
c. create()
d. ejbRemove()
e. createDiscount()
Answer:
B, C I believe the answer should be b,c,e
as it has been asked about the valid methods from session bean client (can be called using reference of Home & Component interface) so createDiscount can be a business method that can be declared in component interface & its implementation can be in bean class as the spec says
The name of business method in bean class should not begin with
ejb(can begin with create)
Let me know your opinion?