List of usage examples for org.apache.solr.client.solrj.embedded SSLConfig SSLConfig
public SSLConfig(boolean useSSL, boolean clientAuth, String keyStore, String keyStorePassword, String trustStore, String trustStorePassword)
From source file:org.apache.camel.component.solr.JettySolrFactory.java
License:Apache License
private static SSLConfig buildSSLConfig(boolean useSsl, boolean sslClientAuth) { SSLConfig sslConfig = new SSLConfig(useSsl, false, TEST_KEYSTORE_PATH, TEST_KEYSTORE_PASSWORD, TEST_KEYSTORE_PATH, TEST_KEYSTORE_PASSWORD); return sslConfig; }