Hi,
XDoclet generates Home and remote interfaces fine but when trying to
generate Local Home and Local Interfaces it doesn't add any of the bean
methods in the local interface.
Here's my bean javadoc:
/**
* @ejb.bean
* view-type="local"
* local-jndi-name="FindDeployerServiceLocal"
* name="FindDeployerCommon"
* type="Stateless"
* description="Some description"
* @ejb.transaction
* type="Required"
*/
public class FindDeployerCommonBean extends CommonBaseBean implements
SessionBean {
...
...
each method has the following defined:
/* (non-Javadoc)
* @ejb.interface-method view-type="local"
*/
public void allocateCarriersForConsignments(ConsignmentValueObject[]
consignments)
throws ApplicationException, SystemLevelException {
my ant build script looks like this:
<ejbdoclet
destdir="${dir.generated.src}"
excludedtags="@version,@author"
addedtags="@xdoclet-generated at ${TODAY}"
ejbspec="2.0" force="false" verbose="true">
<fileset dir="${dir.src}">
<include name="com/**/*Bean.java"/>
</fileset>
<homeinterface />
<remoteinterface pattern="{0}Interface"/>
<localhomeinterface/>
<localinterface pattern="{0}Local"/>
<deploymentdescriptor destdir="${dir.ejb.metainf}"/>
</ejbdoclet>
The resulting local interface is empty:
/*
* Generated by XDoclet - Do not edit!
*/
/**
* Local interface for FindDeployerCommon.
* @xdoclet-generated at 10-07-03
*/
public interface FindDeployerCommonLocal
extends javax.ejb.EJBLocalObject
{
}
Any ideas whats missing?
Thanks
Rakesh
-------------------------------------------------------
This SF.Net email sponsored by: Parasoft
Error proof Web apps, automate testing & more.
Download & eval WebKing and get a free book.
www.parasoft.com/bulletproofapps1
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user