| Package | Description |
|---|---|
| com.vmware.vapi.protocol |
| Modifier and Type | Method and Description |
|---|---|
HttpConfiguration.SslConfiguration.Builder |
HttpConfiguration.SslConfiguration.Builder.disableCertificateValidation()
Disables the validation of the server's certificate chain, thus
making the client trust all the endpoints it is connecting to
regardless of the certificate they provide.
|
HttpConfiguration.SslConfiguration.Builder |
HttpConfiguration.SslConfiguration.Builder.disableHostnameVerification()
Disables the verification of the server's hostname, thus exposing
the client to man-in-the-middle attacks.
|
HttpConfiguration.SslConfiguration.Builder |
HttpConfiguration.SslConfiguration.Builder.setCrlCertStore(CertStore crlCertStore)
Sets the certificate revocation list
CertStore that would
be used for validating server certificates. |
HttpConfiguration.SslConfiguration.Builder |
HttpConfiguration.SslConfiguration.Builder.setEnabledCipherSuites(String[] enabledCipherSuites)
Sets the cipher suites enabled for use by this configuration.
|
HttpConfiguration.SslConfiguration.Builder |
HttpConfiguration.SslConfiguration.Builder.setEnabledProtocols(String[] enabledProtocols)
Sets the protocol versions enabled for use by this configuration.
|
HttpConfiguration.SslConfiguration.Builder |
HttpConfiguration.SslConfiguration.Builder.setKeyStore(KeyStore keyStore)
Sets the
KeyStore which contains the certificates used to
authenticate the client during an SSL handshake. |
HttpConfiguration.SslConfiguration.Builder |
HttpConfiguration.SslConfiguration.Builder.setKeyStoreConfig(HttpConfiguration.KeyStoreConfig keyStoreConfig)
Sets the configuration parameters for the
KeyStore
provided with setKeyStore(KeyStore). |
HttpConfiguration.SslConfiguration.Builder |
HttpConfiguration.SslConfiguration.Builder.setTrustStore(KeyStore trustStore)
Sets the
KeyStore that contains certificates of trusted
parties or Certificate Authorities trusted to identify other
parties. |
Copyright © 2022. All rights reserved.