/sigmah/src/test/java/org/sigmah/server/auth/NullMailer.java

http://sigma-h.googlecode.com/ · Java · 17 lines · 8 code · 4 blank · 5 comment · 0 complexity · 79af67618ac0bfaf2ec8ce6689b8a129 MD5 · raw file

  1. /*
  2. * All Sigmah code is released under the GNU General Public License v3
  3. * See COPYRIGHT.txt and LICENSE.txt.
  4. */
  5. package org.sigmah.server.auth;
  6. import org.apache.commons.mail.Email;
  7. import org.apache.commons.mail.EmailException;
  8. import org.sigmah.server.mail.MailSender;
  9. public class NullMailer implements MailSender {
  10. public void send(Email message) throws EmailException {
  11. // NOOP
  12. }
  13. }