0 Replies Latest reply on Oct 29, 2003 10:02 AM by themirror

    ejbCreate() generation

    themirror

      Good day all,

      I hope someone can help me with this problem.

      OK, I create a entity bean BMP , and I want to change the parameters to the ejbCreate() method.

      Therefore, I changed the ejbCreate() parameters in my XYZBean class :

      public XYZPK ejbCreate( String param1, Integer param2 ) throws javax.ejb.CreateException

      BUT When I generate EJB classes, by default, Lomboz&XDoclet still generate my XYZDao class with the create method with this signature :

      public XYZPK create(XYZBean ejb) throws javax.ejb.CreateException, javax.ejb.EJBException;

      Is someone advanced enough to help me solve my problem ?