]> git.mxchange.org Git - jfinancials-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/jfinancials/mailer/model/delivery/FinancialsEmailDeliveryMessageBean.java

index 6d69344a5bc0e465dcc17f6fe527190c8096c0b4..12913dbf81c8f50db49b13f160be0e9718ac8751 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/jfinancials-email-queue"),
-       @ActivationConfigProperty (propertyName = "destinationType", propertyValue = "javax.jms.Queue")
-})
+@MessageDriven (
+               name = "jfinancialsEmailDelivery",
+               description = "A message bean for email delivery",
+               activationConfig = {
+                       @ActivationConfigProperty (propertyName = "destinationLookup", propertyValue = "jms/jfinancials-email-queue"),
+                       @ActivationConfigProperty (propertyName = "destinationType", propertyValue = "javax.jms.Queue")
+               })
 public class FinancialsEmailDeliveryMessageBean extends BaseFinancialsDatabaseBean implements MessageListener {
 
        /**