Coverage Report - org.paneris.jammyjoes.mail.TransportAbapter
 
Classes in this File Line Coverage Branch Coverage Complexity
TransportAbapter
0%
0/5
N/A
1
 
 1  
 package org.paneris.jammyjoes.mail;
 2  
 
 3  
 import javax.mail.MessagingException;
 4  
 
 5  
 import com.sun.mail.smtp.SMTPTransport;
 6  
 
 7  
 public class TransportAbapter implements MailTransport {
 8  
 
 9  
   private SMTPTransport transport;
 10  
 
 11  0
   public TransportAbapter(SMTPTransport transport) {
 12  0
     this.transport = transport;
 13  0
   }
 14  
 
 15  
   public void send(MimeMail email) throws MessagingException {
 16  0
     SMTPTransport.send(email.getMessage());
 17  0
   }
 18  
 
 19  
 }