Skip to content

Commit

Permalink
fix: Added protected accessors for trust manager and hostname verifier.
Browse files Browse the repository at this point in the history
  • Loading branch information
antusus committed Sep 15, 2023
1 parent 256c255 commit c815769
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/com/box/sdk/BoxAPIConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -1261,6 +1261,14 @@ private Response executeOnClient(OkHttpClient httpClient, Request request) {
}
}

protected X509TrustManager getTrustManager() {
return trustManager;
}

protected HostnameVerifier getHostnameVerifier() {
return hostnameVerifier;
}

/**
* Used to categorize the types of resource links.
*/
Expand Down

0 comments on commit c815769

Please sign in to comment.