Skip to content

Commit 7390b97

Browse files
committed
Update withTrustStrategy javadoc (neo4j#924)
1 parent 675ac10 commit 7390b97

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

driver/src/main/java/org/neo4j/driver/Config.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -473,15 +473,15 @@ public ConfigBuilder withoutEncryption()
473473
}
474474

475475
/**
476-
* Specify how to determine the authenticity of an encryption certificate provided by the Neo4j instance we are connecting to.
477-
* This defaults to {@link TrustStrategy#trustSystemCertificates()}.
478-
* See {@link TrustStrategy#trustCustomCertificateSignedBy(File)} for using certificate signatures instead to verify
479-
* trust.
476+
* Specify how to determine the authenticity of an encryption certificate provided by the Neo4j instance we are connecting to. This defaults to {@link
477+
* TrustStrategy#trustSystemCertificates()}. See {@link TrustStrategy#trustCustomCertificateSignedBy(File)} for using certificate signatures instead to
478+
* verify trust.
480479
* <p>
481-
* This is an important setting to understand, because unless we know that the remote server we have an encrypted connection to
482-
* is really Neo4j, there is no point to encrypt at all, since anyone could pretend to be the remote Neo4j instance.
480+
* This is an important setting to understand, because unless we know that the remote server we have an encrypted connection to is really Neo4j, there
481+
* is no point to encrypt at all, since anyone could pretend to be the remote Neo4j instance.
483482
* <p>
484-
* For this reason, there is no option to disable trust verification, if you find this cumbersome you should disable encryption using
483+
* For this reason, there is no option to disable trust verification. However, it is possible to turn off encryption using the {@link
484+
* ConfigBuilder#withoutEncryption()} option.
485485
*
486486
* @param trustStrategy TLS authentication strategy
487487
* @return this builder

0 commit comments

Comments
 (0)