Skip to main content
summaryrefslogtreecommitdiffstats
blob: 584f4b1a64b1dddfa92d2548821061bff5dfcaf5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package org.eclipse.jetty.client.helperClasses;

import java.io.FileInputStream;

import org.eclipse.jetty.client.HttpClient;
import org.eclipse.jetty.toolchain.test.MavenTestingUtils;

public class ExternalKeyStoreAsyncSslServerAndClientCreator extends AbstractSslServerAndClientCreator implements ServerAndClientCreator
{

    public HttpClient createClient(long idleTimeout, long timeout, int connectTimeout) throws Exception
    {
        HttpClient httpClient = new HttpClient();
        httpClient.setConnectorType(HttpClient.CONNECTOR_SELECT_CHANNEL);
        httpClient.setMaxConnectionsPerAddress(2);

        String keystore = MavenTestingUtils.getTestResourceFile("keystore").getAbsolutePath();

        httpClient.setKeyStoreInputStream(new FileInputStream(keystore));
        httpClient.setKeyStorePassword("storepwd");
        httpClient.setKeyManagerPassword("keypwd");
        httpClient.start();
        return httpClient;
    }


}

Back to the top