1 22 package org.jboss.ejb3.test.consumer; 23 24 import org.jboss.annotation.ejb.Producer; 25 import org.jboss.annotation.ejb.MessageProperties; 26 import org.jboss.annotation.ejb.DeliveryMode; 27 28 33 @Producer(connectionFactory="java:/JmsXA") 34 public interface QueueTestXA extends QueueTest 35 { 36 @MessageProperties(delivery=DeliveryMode.PERSISTENT, priority=4) 37 void method2(String msg, float num); 38 } 39 | Popular Tags |