Hello,
 
Is there some inheritance mechanism of ejb tags supported by XDoclet? I've the following problem:
 
/**
 * @ejb.bean
 *  generate="false"
 * @ejb.transaction
 *   type="Required"
 * @ejb.home
 *   remote-class="com.vangenechten.commons.AbstractSessionRemoteHome"
 * @ejb.interface
 *   remote-class="com.vangenechten.commons.AbstractSessionRemote"
 *
 * @weblogic.enable-call-by-reference True
 *
 * @weblogic.pool
 *   initial-beans-in-free-pool="1"
 *   max-beans-in-free-pool="15"
 */
public abstract class AbstractSessionBean implements SessionBean { }
 
/**
 * @ejb.bean
 *  name="DTSServiceBean"
 *  type="Stateless"
 *  view-type="remote"
 *  transaction-type="Container"
 *  jndi-name="com.vangenechten.infrastructure.tp01synchro.DTSService"
 * @ejb.transaction
 *   type="NotSupported"
 * @ejb.home
 *   remote-class="com.vangenechten.infrastructure.tp01synchro.DTSServiceRemoteHome"
 * @ejb.interface
 *   remote-class="com.vangenechten.infrastructure.tp01synchro.DTSServiceRemote"
 */
public class DTSServiceBean extends AbtractSessionBean {}
 
 
 
 
<container-transaction >
      <method >
         <ejb-name>DTSServiceBean</ejb-name>
          <method-name>*</method-name>
       </method>
       <trans-attribute>NotSupported</trans-attribute>
</container-transaction>
<container-transaction >
      <method >
         <ejb-name>DTSServiceBean</ejb-name>
          <method-name>*</method-name>
       </method>
       <trans-attribute>Required</trans-attribute>
</container-transaction>
 
Thanks for any feedback!
Privileged Confidential Information may be contained in this message.
If you are not the addressee indicated in this message (or responsible for 
delivery of 
the message to such person), you may not copy or deliver this message to anyone.
In such case, you should destroy this message and kindly notify the sender by 
reply 
email. Please advise immediately if you or your employer does not consent to 
Internet 
email for messages of this kind. Opinions, conclusions and other information in 
this 
message that do not relate to the official business of my firm shall be 
understood 
as neither given nor endorsed by it.

Reply via email to