hi,

I have one problem with permission method generation.
I have a method with an argument which is an object
from my project and xdoclet does not generate the
right method-permission.

my method on FacadeEJB is like

/**
 * @ejb:interface-method
 * @ejb:permission
 *    unchecked="true"
 */
public void business(SomeObject object) ...

it generates

   <method-permission >
      <description></description>
      <unchecked/>
      <method >
         <description></description>
         <ejb-name>FacadeEJB</ejb-name>
         <method-intf>Local</method-intf>
         <method-name>business</method-name>
         <method-params>
            <method-param>SomeObject</method-param>
         </method-params>
      </method>
   </method-permission>

the package name is stripped and therefore that
permission is incorrect.

However if I set the fqn for SomeObject in the method
:

/**
 * @ejb:interface-method
 * @ejb:permission
 *    unchecked="true"
 */
public void business(somepackage.SomeObject object)
...

it goes well.

This is with xdoclet beta downloaded from sourceforge.

regards,

julien


___________________________________________________________
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran�ais !
Yahoo! Mail : http://fr.mail.yahoo.com


-------------------------------------------------------
This sf.net email is sponsored by: See the NEW Palm 
Tungsten T handheld. Power & Color in a compact size!
http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0001en
_______________________________________________
Xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to