View Javadoc

1   /* $Id: EmailMessengerFactory.java,v 1.2 2004/06/02 20:10:05 johndavidtaylor Exp $
2    * Created on May 24, 2004 by jdt@roe.ac.uk
3    * The alipes project
4    *
5    */
6   package org.abraracourcix.alipes.common.messaging;
7   
8   /***
9    * A factory for email messengers.  What else?
10   * 
11   * @author jdt
12   */
13  public interface EmailMessengerFactory {
14      /***
15       * Create a messenger that can be used to message these recipients
16       * @param recipients comma separated list of recipients
17       * @return an EmailMessenger
18       */
19      Messenger getEmailMessenger(final String recipients);
20  }
21  
22  
23  /*
24   *  $Log: EmailMessengerFactory.java,v $
25   *  Revision 1.2  2004/06/02 20:10:05  johndavidtaylor
26   *  Refactoring to allow email templates.
27   *
28   */