Here ist the class hierarchy:
                          |----------------------------------| 
                          |AbstractAccessStatelessSessionBean|
                          |----------------------------------|
                                          |              |
|---------------------------------------------|  |----------|
|AbstractAccessAdminSystemStatelessSessionBean|  |AccessBean|
|---------------------------------------------|  |----------|
| addUser2Group()                             |
|---------------------------------------------|

The method addUser2Group is defined in
AbstractAccessAdminSystemStatelessSessionBean - but not in
AbstractAccessStatelessSessionBean - so AccessBean has no such Method.
The LocalInterface won't either.

Regards,
Stefan
> 
> hi,
> 
> I have this session bean:
> 
> public class AccessBean extends AbstractAccessStatelessSessionBean
> implements SessionBean {
> ...
> }
> 
> which extends this abstract session bean
> 
> public abstract class AbstractAccessAdminSystemStatelessSessionBean extends
> AbstractAccessStatelessSessionBean {
>      /**
>       * Description of the Method
>       *
>       * @exception CreateException  Description of the Exception
>       */
>      public void ejbCreate() throws CreateException {
>          super.ejbCreate();
> 
>          logger.debug("ejbCreate() entered");
>      }
> 
>      /**
>       * Description of the Method
>       *
>       * @param user_id
>       * @param group_id
>       * @throws OMAException
>       * @ejb.interface-method
>       *       view-type = "local"
>       */
>      public final void addUser2Group(Long user_id, Integer group_id)
>          throws OMAException {
>          // TODO check for the user
> 
>          // TODO check for the group
> 
>          // TODO add user to the group
>      }
> }
> 
> Why doxn't xdoclet add the method addUser2Group() to the local interface of
> my AccessBean?
> 
> Regards,
> Rafal
> 




-------------------------------------------------------
This SF.net email is sponsored by: The SF.net Donation Program.
Do you like what SourceForge.net is doing for the Open
Source Community?  Make a contribution, and help us add new
features and functionality. Click here: http://sourceforge.net/donate/
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to