I've looked at the samples and can't seem to figure out the correct tags to make sure 
I get all of the necessary classes generated.  Basically, I have a generic EJB which 
other EJBs extend.  I assume the sub-class remotes should extend the super-remote. 
Each home can probably be unique, no super/sub required.  How can I setup the tags to 
generate this correctly?  Here's my current configuration:
/**
 * @ejb.bean 
 *     name="ObjectLib"
 *     generate="false"
 *     view-type="remote"
 *     type="Stateless"
 */
public class ObjectLibBean implements SessionBean, DataAccessObject {
 // ...
 // each public method has @ejb.interface-method specified
 // ...
}

/**
 * @ejb.bean 
 *     name="Category"
 *     jndi-name="ejb.Category"
 *     view-type="remote"
 *     type="Stateless"
 */
public class CategoryBean extends ObjectLibBean implements CategoryDAO {
 // ...
 // each public method has @ejb.interface-method specified
 // ...
}

I assume I want to generate ObjectLib (remote), Category (extends ObjectLib), and 
CategoryHome.  Any help would be appreciated.  Sorry if this has been asked before, 
but I can't seem to bring up the archive.

Thanks,

Eric



-------------------------------------------------------
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

Reply via email to