Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Jun 21, 2024
1 parent 8e41d03 commit a9dce3f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ public Object obtain(final WebClientOptions options) {
* Type of the specified SSL client certificate <b>KeyStore</b> (e.g. - {@code jks} or {@code pkcs12}).
* <p>
* property: <b>webdriver.htmlunit.sslClientCertificateType</b><br>
* type: {@link char[]}<br>
* type: char[]<br>
* default: {@code null}<br>
* see: {@link #SSL_CLIENT_CERTIFICATE_STORE}<br>
* see: {@link #SSL_CLIENT_CERTIFICATE_PASSWORD}<br>
Expand All @@ -272,7 +272,7 @@ public Object obtain(final WebClientOptions options) {
* Password for the specified SSL client certificate <b>KeyStore</b>.
* <p>
* property: <b>webdriver.htmlunit.sslClientCertificatePassword</b><br>
* type: {@code char[]}<br>
* type: char[]<br>
* default: {@code null}<br>
* see: {@link #SSL_CLIENT_CERTIFICATE_STORE}<br>
* see: {@link #SSL_CLIENT_CERTIFICATE_TYPE}
Expand Down Expand Up @@ -331,7 +331,7 @@ public Object obtain(final WebClientOptions options) {
* Type of the specified SSL trust <b>KeyStore</b> (e.g. - {@code jks} or {@code pkcs12}).
* <p>
* property: <b>webdriver.htmlunit.sslTrustStoreType</b><br>
* type: {@link char[]}<br>
* type: char[]<br>
* default: {@code null}<br>
* see: {@link #SSL_TRUST_STORE}<br>
* see: {@link #SSL_TRUST_STORE_PASSWORD}<br>
Expand All @@ -358,7 +358,7 @@ public Object obtain(final WebClientOptions options) {
* Password for the specified SSL trust <b>KeyStore</b>.
* <p>
* property: <b>webdriver.htmlunit.sslTrustStorePassword</b><br>
* type: {@code char[]}<br>
* type: char[]<br>
* default: {@code null}<br>
* see: {@link #SSL_TRUST_STORE}<br>
* see: {@link #SSL_TRUST_STORE_TYPE}
Expand All @@ -383,7 +383,7 @@ public Object obtain(final WebClientOptions options) {
* Sets the protocol versions enabled for use on SSL connections.
* <p>
* property: <b>webdriver.htmlunit.sslClientProtocols</b><br>
* type: {@code String[]}<br>
* type: String[]<br>
* default: {@code null} (use default protocols)<br>
* see: {@link javax.net.ssl.SSLSocket#setEnabledProtocols(String[]) SSLSocket.setEnabledProtocols}
*/
Expand All @@ -403,7 +403,7 @@ public Object obtain(final WebClientOptions options) {
* Sets the cipher suites enabled for use on SSL connections.
* <p>
* property: <b>webdriver.htmlunit.sslClientCipherSuites</b><br>
* type: {@code String[]}<br>
* type: String[]<br>
* default: {@code null} (use default cipher suites)<br>
* see: {@link javax.net.ssl.SSLSocket#setEnabledCipherSuites(String[]) SSLSocket.setEnabledCipherSuites}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ static String decodeString(final Object value) {
}

/**
* Decode the specified value as a {@code char[]}.
* Decode the specified value as a char[].
*
* @param value value to be decoded
* @return specified value decoded as {@code char[]}
* @return specified value decoded as char[]
*/
static char[] decodeCharArray(final Object value) {
if (value == null) {
Expand All @@ -139,10 +139,10 @@ static char[] decodeCharArray(final Object value) {
}

/**
* Decode the specified value as a {@code String[]}.
* Decode the specified value as a String[].
*
* @param value value to be decoded
* @return specified value decoded as {@link String}[]
* @return specified value decoded as String[]
*/
static String[] decodeStringArray(final Object value) {
if (value == null) {
Expand Down

0 comments on commit a9dce3f

Please sign in to comment.