Coverage Report - org.apache.camel.component.mail.JavaMailConnection
 
Classes in this File Line Coverage Branch Coverage Complexity
JavaMailConnection
67% 
N/A 
4
 
 1  
 /**
 2  
  *
 3  
  * Licensed to the Apache Software Foundation (ASF) under one or more
 4  
  * contributor license agreements.  See the NOTICE file distributed with
 5  
  * this work for additional information regarding copyright ownership.
 6  
  * The ASF licenses this file to You under the Apache License, Version 2.0
 7  
  * (the "License"); you may not use this file except in compliance with
 8  
  * the License.  You may obtain a copy of the License at
 9  
  *
 10  
  * http://www.apache.org/licenses/LICENSE-2.0
 11  
  *
 12  
  * Unless required by applicable law or agreed to in writing, software
 13  
  * distributed under the License is distributed on an "AS IS" BASIS,
 14  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 15  
  * See the License for the specific language governing permissions and
 16  
  * limitations under the License.
 17  
  */
 18  
 package org.apache.camel.component.mail;
 19  
 
 20  
 import org.springframework.mail.MailAuthenticationException;
 21  
 import org.springframework.mail.MailException;
 22  
 import org.springframework.mail.MailSendException;
 23  
 import org.springframework.mail.javamail.JavaMailSenderImpl;
 24  
 
 25  
 import javax.mail.AuthenticationFailedException;
 26  
 import javax.mail.MessagingException;
 27  
 import javax.mail.Transport;
 28  
 import javax.mail.Folder;
 29  
 import javax.mail.Store;
 30  
 
 31  
 /**
 32  
  * An extension of Spring's {@link JavaMailSenderImpl} to provide helper methods for listening for new mail
 33  
  *
 34  
  * @version $Revision: 1.1 $
 35  
  */
 36  7
 public class JavaMailConnection extends JavaMailSenderImpl {
 37  
 
 38  
     public Folder getFolder(String protocol, String folderName) {
 39  
         try {
 40  4
             Store store = getSession().getStore(protocol);
 41  4
             store.connect(getHost(), getPort(), getUsername(), getPassword());
 42  4
             return store.getFolder(folderName);
 43  
         }
 44  0
         catch (MessagingException e) {
 45  0
             throw new MailSendException("Mail server connection failed", e);
 46  
         }
 47  
     }
 48  
 }