Bugs item #532498, was opened at 2002-03-20 06:40
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=402704&aid=532498&group_id=31602

Category: ejbdoclet
Group: v1.1.2
Status: Open
Resolution: None
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Bad generation of findByPrimaryKey f

Initial Comment:
Given the next code
public abstract class EnterpriseEntityEJB implements 
EntityBean {
...
...
...
    /**
     * @ejb.finder signature="Key findByPrimaryKey(Key 
iKey)"
     */
    public Key ejbFindByPrimaryKey(Key iKey) throws 
FinderException, RemoteException {
...
...
}

and a sub class which does not define any finder 
method.
The Home interfaces should be generated as:

public interface EnterpriseEntityEJB implements EJBHome
{
   public EnterpriseEntity findByPrimaryKey(.....)...;
}

public interface SubHome extends EnterpriseEntityEJB {
   //without any finder
}

What I do get is:
public interface SubHome extends EnterpriseEntityEJB {
   public Sub findByPrimaryKey(.....)...;
}

This code does not compile.





----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=402704&aid=532498&group_id=31602

_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to