File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed
test-functional/src/test/resources/META-INF/native-image
test-non-functional/src/test/java/mp Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 4
4
{
5
5
"pattern" : " \\ Qarangodb.properties\\ E"
6
6
},
7
+ {
8
+ "pattern" : " \\ Qarangodb-ssl.properties\\ E"
9
+ },
7
10
{
8
11
"pattern" : " \\ Qarangodb-bad.properties\\ E"
9
12
},
Original file line number Diff line number Diff line change @@ -21,6 +21,11 @@ public final class ArangoConfigPropertiesMPImpl implements ArangoConfigPropertie
21
21
private Optional <String > jwt ;
22
22
private Optional <Integer > timeout ;
23
23
private Optional <Boolean > useSsl ;
24
+ private Optional <String > sslCertValue ;
25
+ private Optional <String > sslCertType ;
26
+ private Optional <String > sslAlgorithm ;
27
+ private Optional <String > sslKeystoreType ;
28
+ private Optional <String > sslProtocol ;
24
29
private Optional <Boolean > verifyHost ;
25
30
private Optional <Integer > chunkSize ;
26
31
private Optional <Boolean > pipelining ;
@@ -71,6 +76,31 @@ public Optional<Boolean> getUseSsl() {
71
76
return useSsl ;
72
77
}
73
78
79
+ @ Override
80
+ public Optional <String > getSslCertValue () {
81
+ return sslCertValue ;
82
+ }
83
+
84
+ @ Override
85
+ public Optional <String > getSslCertType () {
86
+ return sslCertType ;
87
+ }
88
+
89
+ @ Override
90
+ public Optional <String > getSslAlgorithm () {
91
+ return sslAlgorithm ;
92
+ }
93
+
94
+ @ Override
95
+ public Optional <String > getSslKeystoreType () {
96
+ return sslKeystoreType ;
97
+ }
98
+
99
+ @ Override
100
+ public Optional <String > getSslProtocol () {
101
+ return sslProtocol ;
102
+ }
103
+
74
104
@ Override
75
105
public Optional <Boolean > getVerifyHost () {
76
106
return verifyHost ;
You can’t perform that action at this time.
0 commit comments