1
2
3
4
5
6
7
8
9
10
11 package org.mule.transport.email;
12
13 import org.mule.api.MuleContext;
14
15
16
17
18
19 public class Pop3sConnector extends AbstractTlsRetrieveMailConnector
20 {
21
22 public static final String POP3S = "pop3s";
23 public static final int DEFAULT_POP3S_PORT = 995;
24
25 public Pop3sConnector(MuleContext context)
26 {
27 super(DEFAULT_POP3S_PORT, Pop3sSocketFactory.MULE_POP3S_NAMESPACE, Pop3sSocketFactory.class, context);
28 }
29
30 public String getProtocol()
31 {
32 return "pop3s";
33 }
34
35 public String getBaseProtocol()
36 {
37 return "pop3";
38 }
39
40 }