Package | Description |
---|---|
com.teamdev.jxbrowser.browser.callback |
This package provides the classes that allow you to work with browser callback.
|
com.teamdev.jxbrowser.net.tls |
Contains classes and interfaces for working with SSL certificates.
|
Modifier and Type | Method and Description |
---|---|
void |
SelectClientCertificateCallback.Action.select(ClientCertificate clientCertificate)
Notifies the browser that the given
clientCertificate should be selected. |
Modifier and Type | Method and Description |
---|---|
static ClientCertificate |
ClientCertificate.of(java.nio.file.Path keystoreFilePath,
java.lang.String keystorePassword,
KeyStoreType keyStoreType)
Loads a client certificate from the given keystore file with the given password
and keystore type.
|
static ClientCertificate |
ClientCertificate.of(java.security.cert.X509Certificate x509Cert,
SslPrivateKey privateKey)
Returns the
ClientCertificate instance for the given certificate and SSL
private key. |
static ClientCertificate |
ClientCertificate.of(java.security.cert.X509Certificate x509Cert,
SslPrivateKey privateKey,
java.util.List<java.security.cert.X509Certificate> intermediateX509Certs)
Returns the
ClientCertificate instance for the given certificate , SSL
private key, and intermediate certificates. |