1 17 package org.apache.geronimo.mail; 18 19 import javax.mail.Address ; 20 import javax.mail.Message ; 21 import javax.mail.MessagingException ; 22 import javax.mail.Session ; 23 import javax.mail.Transport ; 24 import javax.mail.URLName ; 25 26 29 public class NullTransport extends Transport { 30 public NullTransport(Session session, URLName urlName) { 31 super(session, urlName); 32 } 33 34 public void sendMessage(Message message, Address [] addresses) throws MessagingException { 35 } 37 38 protected boolean protocolConnect(String host, int port, String user, String password) throws MessagingException { 39 return true; } 41 42 } 43 | Popular Tags |