]> git.mxchange.org Git - jmailer-ee.git/commitdiff
updated jar(s)
authorRoland Häder <roland@mxchange.org>
Thu, 17 Aug 2017 19:59:09 +0000 (21:59 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 17 Aug 2017 20:19:31 +0000 (22:19 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
lib/juser-core.jar
src/org/mxchange/jmailee/model/delivery/BaseMailerBean.java
src/org/mxchange/jmailee/model/delivery/DeliverableEmailLocal.java [deleted file]
src/org/mxchange/jmailee/model/delivery/DeliverableEmailRemote.java [new file with mode: 0644]

index 47124fbd731e4d580c450ed628e41034bfbce6da..a215338d6eb209b93504d153752fbbac917e5236 100644 (file)
Binary files a/lib/juser-core.jar and b/lib/juser-core.jar differ
index 5fb6303efa5313a14b4b27cc0629563f6d524cff..737b7af73b065b2a0b10dcdaa5ba29c355ac666c 100644 (file)
@@ -40,7 +40,7 @@ import org.mxchange.jmailee.model.delivery.wrapper.WrapableEmailDelivery;
  * <p>
  * @author Roland Häder<roland@mxchange.org>
  */
-public abstract class BaseMailerBean extends BaseDatabaseBean implements DeliverableEmailLocal {
+public abstract class BaseMailerBean extends BaseDatabaseBean implements DeliverableEmailRemote {
 
        /**
         * Serial number
diff --git a/src/org/mxchange/jmailee/model/delivery/DeliverableEmailLocal.java b/src/org/mxchange/jmailee/model/delivery/DeliverableEmailLocal.java
deleted file mode 100644 (file)
index 42b5148..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (C) 2016, 2017 Roland Häder
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-package org.mxchange.jmailee.model.delivery;
-
-import java.io.Serializable;
-import javax.ejb.Local;
-import javax.mail.MessagingException;
-import org.mxchange.jmailee.model.delivery.wrapper.WrapableEmailDelivery;
-
-/**
- * An interface for email delivery classes
- * <p>
- * @author Roland Häder<roland@mxchange.org>
- */
-@Local
-public interface DeliverableEmailLocal extends Serializable {
-
-       /**
-        * Sends given deliverable mail instance. This must have set a template
-        * name, a recipient address and a subject line set.
-        * <p>
-        * @param emailWrapper Deliverable mail wrapper
-        *
-        * @throws MessagingException If something bad happened
-        */
-       void sendDeliverableMail (final WrapableEmailDelivery emailWrapper) throws MessagingException;
-
-}
diff --git a/src/org/mxchange/jmailee/model/delivery/DeliverableEmailRemote.java b/src/org/mxchange/jmailee/model/delivery/DeliverableEmailRemote.java
new file mode 100644 (file)
index 0000000..537b04a
--- /dev/null
@@ -0,0 +1,45 @@
+/*
+ * Copyright (C) 2016, 2017 Roland Häder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jmailee.model.delivery;
+
+import java.io.Serializable;
+import javax.ejb.Remote;
+import javax.mail.MessagingException;
+import org.mxchange.jmailee.model.delivery.wrapper.WrapableEmailDelivery;
+
+/**
+ * An interface for email delivery classes. You should not call these methods
+ * directly from you EJBs as this will be a "synchronous" call causing lag on
+ * slow mail connections. Instead you want to use the *-mailer-ejb's
+ * message-queue bean.
+ * <p>
+ * @author Roland Häder<roland@mxchange.org>
+ */
+@Remote
+public interface DeliverableEmailRemote extends Serializable {
+
+       /**
+        * Sends given deliverable mail instance. This must have set a template
+        * name, a recipient address and a subject line set.
+        * <p>
+        * @param emailWrapper Deliverable mail wrapper
+        *
+        * @throws MessagingException If something bad happened
+        */
+       void sendDeliverableMail (final WrapableEmailDelivery emailWrapper) throws MessagingException;
+
+}