Coverage Report - org.mule.transport.email.config.SmtpNamespaceHandler
 
Classes in this File Line Coverage Branch Coverage Complexity
SmtpNamespaceHandler
100%
5/5
N/A
1
 
 1  
 /*
 2  
  * $Id: SmtpNamespaceHandler.java 10494 2008-01-23 21:09:56Z acooke $
 3  
  * --------------------------------------------------------------------------------------
 4  
  * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
 5  
  *
 6  
  * The software in this package is published under the terms of the CPAL v1.0
 7  
  * license, a copy of which has been included with this distribution in the
 8  
  * LICENSE.txt file.
 9  
  */
 10  
 package org.mule.transport.email.config;
 11  
 
 12  
 import org.mule.config.spring.handlers.AbstractMuleNamespaceHandler;
 13  
 import org.mule.config.spring.parsers.collection.ChildMapEntryDefinitionParser;
 14  
 import org.mule.endpoint.URIBuilder;
 15  
 import org.mule.transport.email.MailProperties;
 16  
 import org.mule.transport.email.SmtpConnector;
 17  
 
 18  
 /**
 19  
  * Reigsters a Bean Definition Parser for handling <code><tcp:connector></code> elements.
 20  
  *
 21  
  */
 22  18
 public class SmtpNamespaceHandler extends AbstractMuleNamespaceHandler
 23  
 {
 24  
     public void init()
 25  
     {
 26  18
         registerStandardTransportEndpoints(SmtpConnector.SMTP, URIBuilder.HOST_ATTRIBUTES)
 27  
                 .addAlias("to", MailProperties.TO_ADDRESSES_PROPERTY)
 28  
                 .addAlias("from", MailProperties.FROM_ADDRESS_PROPERTY)
 29  
                 .addAlias("cc", MailProperties.CC_ADDRESSES_PROPERTY)
 30  
                 .addAlias("bcc", MailProperties.BCC_ADDRESSES_PROPERTY)
 31  
                 .addAlias("from", MailProperties.FROM_ADDRESS_PROPERTY)
 32  
                 .addAlias("replyTo", MailProperties.REPLY_TO_ADDRESSES_PROPERTY);
 33  18
         registerConnectorDefinitionParser(SmtpConnector.class);
 34  18
         registerBeanDefinitionParser("header", new ChildMapEntryDefinitionParser("customHeaders", "key", "value"));
 35  18
     }
 36  
 }