I want to specify a permission on create method of session bean home interface.
/**
* @ejb:create-method view-type="both"
* @ejb:permission unchecked = "yes"
*/
public void ejbCreate() { }If I specify these tags in my Session Bean class, XDoclet generate <method-permission > in ejb-jar.xml as I intend.
But my Session Bean extends a super class as following:
class abstract SessionBaseBean | class abstract ServiceBaseBean extends SessionBaseBean | class MySessionBean extends ServiceBaseBean
SessionBaseBean already has ejbCreate() method and if I put above xdoclet tags on this ejbCreate(), <method-permission > is not generated for create method.
Am I doing stupid things?
Kei Takashima
------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
