Hi All!

I am getting xdoclet to generate the following DAO for my bean, UserBean.

========================================================
public interface UserDAO
{
      public void init();
      public void load(java.lang.Integer pk, UserBean ejb) throws
javax.ejb.EJBException;
      public void store(UserBean ejb) throws javax.ejb.EJBException;
      public void remove(java.lang.Integer pk) throws
javax.ejb.RemoveException, javax.ejb.EJBException;
      public java.lang.Integer create(UserBean ejb) throws
javax.ejb.CreateException, javax.ejb.EJBException;
}
========================================================

However, the methods accept the Bean class which is ABSTRACT.

I wanted to know if there is something I am doing incorrectly or is this
expected behaviour.


TIA,

Kunal
--
Using Opera's revolutionary e-mail client: http://www.opera.com/m2/


------------------------------------------------------- This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer Conference, June 28 - July 1 at the Moscone Center in San Francisco, CA REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code NWMGYKND _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to