// SSL Modeproperties.put("sslMode",SSLModeType.VERIFY_CA.name());// Setting the Username, Passwordproperties.put("user",USER);properties.put("password",PASSWORD);// Setting the truststoreproperties.put("trustCertificateKeyStoreUrl","file:path_to_truststore_file");properties.put("trustCertificateKeyStorePassword","mypassword");// Setting the keystoreproperties.put("clientCertificateKeyStoreUrl","file:path_to_keystore_file");properties.put("clientCertificateKeyStorePassword","mypassword");