This is the inflowmdb unit test:
@MessageDriven(activationConfig =
  | {
  | @ActivationConfigProperty(propertyName="cronTrigger", propertyValue="0/2 * 
* * * ?")
  | })
  | @ResourceAdapter("quartz-ra.rar")
  | public class QuartzMDBBean implements Job
  | {
  |    private static final Logger log = Logger.getLogger(QuartzMDBBean.class);
  | 
  |    public static boolean called = false;
  | 
  |    public void execute(JobExecutionContext jobExecutionContext) throws 
JobExecutionException
  |    {
  |       log.info("************** here!!!!");
  |       called = true;
  |    }
  | }
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4054823#4054823

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4054823
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to