static HttpsConfigBuilder |
HttpsConfigBuilder.httpsConfig() |
|
HttpsConfigBuilder |
MuServerBuilder.httpsConfigBuilder() |
|
static HttpsConfigBuilder |
HttpsConfigBuilder.unsignedLocalhost() |
Creates an SSL config builder that will serve HTTPS over a self-signed SSL cert for the localhost domain.
|
HttpsConfigBuilder |
HttpsConfigBuilder.withCipherFilter(SSLCipherFilter cipherFilter) |
Sets a filter allowing you to specify which ciphers you would like to support.
|
HttpsConfigBuilder |
HttpsConfigBuilder.withClientCertificateTrustManager(javax.net.ssl.TrustManager trustManager) |
Sets the trust manager that is used to validate client certificates.
|
HttpsConfigBuilder |
HttpsConfigBuilder.withDefaultAlias(java.lang.String certAlias) |
This option may be useful for cases where multiple certificates exist in a single keystore.
|
HttpsConfigBuilder |
HttpsConfigBuilder.withKeyManagerFactory(javax.net.ssl.KeyManagerFactory keyManagerFactory) |
Sets the key manager factory to use for SSL.
|
HttpsConfigBuilder |
HttpsConfigBuilder.withKeyPassword(char[] keyPassword) |
The password to use to get the key from the keystore
|
HttpsConfigBuilder |
HttpsConfigBuilder.withKeyPassword(java.lang.String keyPassword) |
The password to use to get the key from the keystore
|
HttpsConfigBuilder |
HttpsConfigBuilder.withKeystore(java.io.File file) |
Specifies the keystore to use
|
HttpsConfigBuilder |
HttpsConfigBuilder.withKeystore(java.io.InputStream keystoreStream) |
Loads a keystore from the given stream.
|
HttpsConfigBuilder |
HttpsConfigBuilder.withKeystore(java.security.KeyStore keystore,
char[] password) |
Uses the given KeyStore for TLS.
|
HttpsConfigBuilder |
HttpsConfigBuilder.withKeystoreFromClasspath(java.lang.String classpath) |
Loads a keystore from the classpath
|
HttpsConfigBuilder |
HttpsConfigBuilder.withKeystorePassword(char[] keystorePassword) |
The password to use to access the keystore
|
HttpsConfigBuilder |
HttpsConfigBuilder.withKeystorePassword(java.lang.String keystorePassword) |
The password to use to access the keystore
|
HttpsConfigBuilder |
HttpsConfigBuilder.withKeystoreType(java.lang.String keystoreType) |
The type of keystore, such as JKS, JCEKS, PKCS12, etc
|
HttpsConfigBuilder |
HttpsConfigBuilder.withProtocols(java.lang.String... protocols) |
Sets the SSL/TLS protocols to use, for example "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2", "TLSv1.3".
|