Coverage Report - org.paneris.jammyjoes.mail.MailTransport
 
Classes in this File Line Coverage Branch Coverage Complexity
MailTransport
N/A
N/A
1
 
 1  
 package org.paneris.jammyjoes.mail;
 2  
 
 3  
 import javax.mail.MessagingException;
 4  
 
 5  
 
 6  
 public interface MailTransport {
 7  
 
 8  
   void send(MimeMail email) throws MessagingException;
 9  
 
 10  
 }