Hello All,
I'm trying to define a "remove(Object primarykey)" method in the local home interface for a CMP entity bean. This is discussed on page 97 of the WSAD
EJB Developer's Guide redbook.
However, when I add the following definition to the Local Home interface for the entity bean:
public void remove(Object primarykey) throws RemoveException;
I get this diagnostic message from WSAD 5.1:
CHKJ2464I: This method name must not start with "remove" (EJB 2.0: 9.5.4, 10.6.10).
In summary, I want to add a "remove(Object primarykey)" method to the home interface for a CMP entity bean, but WSAD doesn't like the name "remove".
Can someone clear up my confusion? Many thanks.