1 22 package org.jboss.ejb.plugins; 23 24 import javax.ejb.EJBException ; 25 import org.jboss.invocation.Invocation; 26 27 36 public class MessageDrivenTxInterceptorBMT 37 extends AbstractTxInterceptorBMT 38 { 39 public Object invokeHome(Invocation mi) 40 { 41 throw new EJBException ("No home methods for message beans."); 42 } 43 44 public Object invoke(Invocation mi) 45 throws Exception  46 { 47 return invokeNext(mi); 48 } 49 } 50 | Popular Tags |