View Javadoc

1   /*
2    * $Id: Pop3sNamespaceHandler.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.Pop3sConnector;
17  
18  /**
19   * Reigsters a Bean Definition Parser for handling <code><tcp:connector></code> elements.
20   *
21   */
22  public class Pop3sNamespaceHandler extends AbstractMuleNamespaceHandler
23  {
24      public void init()
25      {
26          registerStandardTransportEndpoints(Pop3sConnector.POP3S, URIBuilder.USERHOST_ATTRIBUTES);
27          registerConnectorDefinitionParser(Pop3sConnector.class);
28          registerBeanDefinitionParser("tls-trust-store", new TrustStoreDefinitionParser());
29          registerBeanDefinitionParser("tls-client", new ClientKeyStoreDefinitionParser());
30      }
31  }