* @param trustStoreType The trustStore type. If null the default type iss used.
* @param trustStorePassword The trustStore password.
* @return the current {@link Builder} instance
*/
public Builder customTrustStore(String trustStorePath, String trustStoreType, String trustStorePassword) {
this.customTrustStore = new TrustStoreConfig(trustStorePath, trustStoreType, trustStorePassword);
return this;
}