1
2
3
4
5
6
7
8
9
10
11 package org.mule.providers.email;
12
13 import org.mule.umo.provider.UMOConnector;
14
15
16
17
18 public class ImapsConnectorTestCase extends AbstractReceivingMailConnectorTestCase
19 {
20
21 public ImapsConnectorTestCase()
22 {
23 super("ImapsConnector");
24 }
25
26 public UMOConnector createConnector(boolean init) throws Exception
27 {
28 ImapsConnector connector = new ImapsConnector();
29 connector.setName(getConnectorName());
30 connector.setCheckFrequency(POLL_PERIOD_MS);
31 connector.setTrustStorePassword("password");
32 connector.setTrustStore("greenmail-truststore");
33 if (init)
34 {
35 connector.initialise();
36 }
37 return connector;
38 }
39
40 public String getTestEndpointURI()
41 {
42 return getImapsTestEndpointURI();
43 }
44
45 }