hi,

can i use multiple ejbCreate methods in a bean?

when i use this code:

<code>

/**
  * @ejb:create-method
  */
public IdPK ejbCreate(IdPK key) throws RemoteException,CreateException
{
   // ...
}

/**
  * @ejb:create-method
  */
public IdPK ejbCreate(String name) throws
                            RemoteException,CreateException
{
   // ...
}
</code>

i thought xdoclet would create 2 ejbCreate methods in IdHome
but xdoclet always took only the first one.
Is it wrong to have multiple ejbCreate methods? or how can i do it?

thx in advice

jens


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

Reply via email to