Skip to content

Commit

Permalink
Javadoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lutovich committed Jan 19, 2017
1 parent f210af1 commit 688c803
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions driver/src/main/java/org/neo4j/driver/v1/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,9 @@ public File certFile()

/**
* Use {@link #trustCustomCertificateSignedBy(File)} instead.
*
* @param certFile the trusted certificate file
* @return an authentication config
*/
@Deprecated
public static TrustStrategy trustSignedBy( File certFile )
Expand All @@ -532,6 +535,8 @@ public static TrustStrategy trustCustomCertificateSignedBy( File certFile )

/**
* Trust strategy for certificates that can be verified through the local system store.
*
* @return an authentication config
*/
public static TrustStrategy trustSystemCertificates()
{
Expand All @@ -541,6 +546,7 @@ public static TrustStrategy trustSystemCertificates()
/**
* Trust strategy for certificates that can be verified through the local system store.
*
* @return an authentication config
* @since 1.1
*/
public static TrustStrategy trustAllCertificates()
Expand Down
2 changes: 1 addition & 1 deletion driver/src/main/java/org/neo4j/driver/v1/Driver.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* The <a href="https://tools.ietf.org/html/rfc3986">URI</a> passed to
* this method determines the type of Driver created.
* <br>
* <table border="1" cellpadding="4" style="border-collapse: collapse">
* <table border="1" cellpadding="4" style="border-collapse: collapse" summary="Available schemes and drivers">
* <thead>
* <tr><th>URI Scheme</th><th>Driver</th></tr>
* </thead>
Expand Down

0 comments on commit 688c803

Please sign in to comment.