* <p>
* @author Roland Haeder<roland@mxchange.org>
*/
-@MessageDriven (activationConfig = {
- @ActivationConfigProperty (propertyName = "destinationLookup", propertyValue = "jms/jlandingpage-email-queue"),
- @ActivationConfigProperty (propertyName = "destinationType", propertyValue = "javax.jms.Queue")
-})
+@MessageDriven (
+ name = "emailDelivery",
+ description = "A message-driven bean for email delivery (some kind of 'queue')",
+ activationConfig = {
+ @ActivationConfigProperty (
+ propertyName = "destinationLookup",
+ propertyValue = "jms/jreports-email-queue"
+ ),
+ @ActivationConfigProperty (
+ propertyName = "destinationType",
+ propertyValue = "javax.jms.Queue"
+ )
+ }
+)
public class PizzaEmailDeliveryMessageBean extends BasePizzaDatabaseBean implements MessageListener {
/**