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.

I used the generate tag just like the code bellow

/**

 *

 * @ejb.bean name="AbstractManterBaseBean" type="Stateless" generate="false"

 *

 */

 

public abstract class AbstractManterBaseBean extends AbstractStatelessSessionBean implements ManterBase {

           

            private ManterBase manterImpl;

...

 

but the local and home interfaces are been generated and I don’t want this.

 

Reply via email to