Coverage Report - org.mule.transport.email.config.ImapsNamespaceHandler
 
Classes in this File Line Coverage Branch Coverage Complexity
ImapsNamespaceHandler
100%
6/6
N/A
1
 
 1  
 /*
 2  
  * $Id: ImapsNamespaceHandler.java 11433 2008-03-20 03:43:57Z dirk.olmes $
 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.specific.tls.ClientKeyStoreDefinitionParser;
 14  
 import org.mule.config.spring.parsers.specific.tls.TrustStoreDefinitionParser;
 15  
 import org.mule.endpoint.URIBuilder;
 16  
 import org.mule.transport.email.ImapsConnector;
 17  
 
 18  
 /**
 19  
  * Reigsters a Bean Definition Parser for handling <code><tcp:connector></code> elements.
 20  
  *
 21  
  */
 22  8
 public class ImapsNamespaceHandler extends AbstractMuleNamespaceHandler
 23  
 {
 24  
     public void init()
 25  
     {
 26  8
         registerStandardTransportEndpoints(ImapsConnector.IMAPS, URIBuilder.USERHOST_ATTRIBUTES);
 27  8
         registerConnectorDefinitionParser(ImapsConnector.class);
 28  8
         registerBeanDefinitionParser("tls-trust-store", new TrustStoreDefinitionParser());
 29  8
         registerBeanDefinitionParser("tls-client", new ClientKeyStoreDefinitionParser());
 30  8
     }
 31  
 }