Hi, > I have an abstract EJBs such other EJBs are derived from. So I do not want > the abstract > EJB exists as a concrete EJB. > If BBean is derived from ABean and you XDocletize both, then BHome will derive from AHome, BRemote will derive from ARemote and so on. As a consequence I don't think it is a problem.
> I used the generate tag just like the code bellow > * @ejb.bean name="AbstractManterBaseBean" type="Stateless" generate="false" > but the local and home interfaces are been generated and I don't want this. > generate="false" only means this bean will not be present in ejb-jar.xml If you are using Ant, you can remove this class from XDoclet fileset: <exclude name="**/AbstractManterBaseBean.java"/> Gerald ------------------------------------------------------- SF.Net email is sponsored by: Discover Easy Linux Migration Strategies from IBM. Find simple to follow Roadmaps, straightforward articles, informative Webcasts and more! Get everything you need to get up to speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id492&op=click _______________________________________________ xdoclet-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
