]> git.mxchange.org Git - jmailer-ee.git/blob - src/org/mxchange/jmailee/model/delivery/DeliverableEmailRemote.java
Continued:
[jmailer-ee.git] / src / org / mxchange / jmailee / model / delivery / DeliverableEmailRemote.java
1 /*
2  * Copyright (C) 2016 - 2018 Free Software Foundation
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jmailee.model.delivery;
18
19 import java.io.Serializable;
20 import javax.ejb.Remote;
21 import javax.mail.MessagingException;
22 import org.mxchange.jmailee.model.delivery.wrapper.WrapableEmailDelivery;
23
24 /**
25  * An interface for email delivery classes. You should not call these methods
26  * directly from you EJBs as this will be a "synchronous" call causing lag on
27  * slow mail connections. Instead you want to use the *-mailer-ejb's
28  * message-queue bean.
29  * <p>
30  * @author Roland Häder<roland@mxchange.org>
31  */
32 @Remote
33 public interface DeliverableEmailRemote extends Serializable {
34
35         /**
36          * Sends given deliverable mail instance. This must have set a template
37          * name, a recipient address and a subject line set.
38          * <p>
39          * @param emailWrapper Deliverable mail wrapper
40          *
41          * @throws MessagingException If something bad happened
42          */
43         void sendDeliverableMail (final WrapableEmailDelivery emailWrapper) throws MessagingException;
44
45 }