01: /*
02: * $Id: Pop3sNamespaceHandler.java 11202 2008-03-06 13:10:42Z acooke $
03: * --------------------------------------------------------------------------------------
04: * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
05: *
06: * The software in this package is published under the terms of the CPAL v1.0
07: * license, a copy of which has been included with this distribution in the
08: * LICENSE.txt file.
09: */
10: package org.mule.transport.email.config;
11:
12: import org.mule.config.spring.handlers.AbstractMuleNamespaceHandler;
13: import org.mule.config.spring.parsers.generic.ParentDefinitionParser;
14: import org.mule.config.spring.parsers.specific.tls.TrustStoreDefinitionParser;
15: import org.mule.config.spring.parsers.specific.tls.ClientKeyStoreDefinitionParser;
16: import org.mule.endpoint.URIBuilder;
17: import org.mule.transport.email.Pop3sConnector;
18:
19: /**
20: * Reigsters a Bean Definition Parser for handling <code><tcp:connector></code> elements.
21: *
22: */
23: public class Pop3sNamespaceHandler extends AbstractMuleNamespaceHandler {
24: public void init() {
25: registerStandardTransportEndpoints(Pop3sConnector.POP3S,
26: URIBuilder.USERHOST_ATTRIBUTES);
27: registerConnectorDefinitionParser(Pop3sConnector.class);
28: registerBeanDefinitionParser("tls-trust-store",
29: new TrustStoreDefinitionParser());
30: registerBeanDefinitionParser("tls-client",
31: new ClientKeyStoreDefinitionParser());
32: }
33: }
|