]> git.mxchange.org Git - addressbook-mailer-ejb.git/commitdiff
fixed EJB name for email delivery beans
authorRoland Häder <roland@mxchange.org>
Sat, 24 Jun 2017 21:41:21 +0000 (23:41 +0200)
committerRoland Häder <roland@mxchange.org>
Sat, 24 Jun 2017 21:41:21 +0000 (23:41 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/addressbook/mailer/model/delivery/AddressbookEmailDeliveryMessageBean.java

index 63d30ed6f5dcb40ae272ebd9d1aed607a84bf55e..daa9f24d3c9de1175f6267e61d1a44bf13ddcca2 100644 (file)
@@ -36,10 +36,13 @@ import org.mxchange.jmailee.model.delivery.wrapper.WrapableEmailDelivery;
  * <p>
  * @author Roland Häder<roland@mxchange.org>
  */
-@MessageDriven (activationConfig = {
-       @ActivationConfigProperty (propertyName = "destinationLookup", propertyValue = "jms/addressbook-email-queue"),
-       @ActivationConfigProperty (propertyName = "destinationType", propertyValue = "javax.jms.Queue")
-})
+@MessageDriven (
+               name = "addressbookEmailDelivery",
+               description = "A message bean for email delivery",
+               activationConfig = {
+                       @ActivationConfigProperty (propertyName = "destinationLookup", propertyValue = "jms/addressbook-email-queue"),
+                       @ActivationConfigProperty (propertyName = "destinationType", propertyValue = "javax.jms.Queue")
+               })
 public class AddressbookEmailDeliveryMessageBean extends BaseAddressbookDatabaseBean implements MessageListener {
 
        /**