1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
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 | |
|
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 | |
} |