File tree Expand file tree Collapse file tree 1 file changed +1
-24
lines changed
src/main/java/com/arangodb Expand file tree Collapse file tree 1 file changed +1
-24
lines changed Original file line number Diff line number Diff line change @@ -101,8 +101,6 @@ public class ArangoConfigure {
101
101
102
102
private SSLContext sslContext = null ;
103
103
104
- private String sslTrustStore = null ;
105
-
106
104
/**
107
105
* the default ArangoDB cursor batch size
108
106
*/
@@ -271,11 +269,6 @@ private void loadProperties(final InputStream in) throws IOException {
271
269
if (useSslProperty != null ) {
272
270
setUseSsl (Boolean .parseBoolean (useSslProperty ));
273
271
}
274
-
275
- final String sslTrustStoreProperty = prop .getProperty ("sslTrustStore" );
276
- if (sslTrustStoreProperty != null ) {
277
- setSslTrustStore (sslTrustStoreProperty );
278
- }
279
272
}
280
273
281
274
private ArangoHost parseArangoHost (final String str ) {
@@ -461,8 +454,7 @@ public String getDefaultDatabase() {
461
454
}
462
455
463
456
/**
464
- * Set the default database for the driver TODO: _system has to be a valid
465
- * parameter
457
+ * Set the default database for the driver TODO: _system has to be a valid parameter
466
458
*
467
459
* @param defaultDatabase
468
460
*/
@@ -551,19 +543,4 @@ public void setSslContext(final SSLContext sslContext) {
551
543
this .sslContext = sslContext ;
552
544
}
553
545
554
- public String getSslTrustStore () {
555
- return sslTrustStore ;
556
- }
557
-
558
- /**
559
- * Set file name of trust store
560
- *
561
- * (do not use setSslTrustStore() together with setSslContext())
562
- *
563
- * @param sslTrustStore
564
- */
565
- public void setSslTrustStore (final String sslTrustStore ) {
566
- this .sslTrustStore = sslTrustStore ;
567
- }
568
-
569
546
}
You can’t perform that action at this time.
0 commit comments