File tree 1 file changed +7
-1
lines changed
src/test/java/net/continuumsecurity
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -131,6 +131,12 @@ private String validateAndGetString(String value) {
131
131
if (ret == null ) throw new RuntimeException (value +" not defined in config.xml" );
132
132
return ret ;
133
133
}
134
+
135
+ private String [] validateAndGetStringArray (String value ) {
136
+ String [] ret = getXml ().getStringArray (value );
137
+ if (ret == null ) throw new RuntimeException (value +" not defined in config.xml" );
138
+ return ret ;
139
+ }
134
140
135
141
public String getSSLyzePath () { return validateAndGetString ("sslyze.path" ); }
136
142
public String getSSLyzeOption () { return validateAndGetString ("sslyze.option" ); }
@@ -195,7 +201,7 @@ public String getReportsDir() {
195
201
196
202
public String getNessusPassword () { return validateAndGetString ("nessus.password" );}
197
203
198
- public String getNoProxyHosts () { return validateAndGetString ( " upstreamProxy.noProxyHosts" );}
204
+ public String getNoProxyHosts () { return String . join ( "," , validateAndGetStringArray ( " upstreamProxy.noProxyHosts") );}
199
205
200
206
public String getUpstreamProxyHost () { return validateAndGetString ("upstreamProxy.host" ); }
201
207
You can’t perform that action at this time.
0 commit comments