Package | Description |
---|---|
com.teamdev.jxbrowser.browser.callback |
This package provides the classes that allow you to work with browser events.
|
com.teamdev.jxbrowser.net.callback |
The network service callbacks.
|
com.teamdev.jxbrowser.net.tls |
Contains classes and interfaces for working with SSL certificates.
|
Modifier and Type | Method and Description |
---|---|
default Certificate |
CertificateErrorCallback.Params.certificate()
Returns the SSL certificate bound to the request which the certificate error occurred
in.
|
Modifier and Type | Method and Description |
---|---|
default java.util.List<Certificate> |
SelectClientCertificateCallback.Params.certificates()
Returns an immutable list of the certificates allowed by the server.
|
Modifier and Type | Method and Description |
---|---|
default Certificate |
VerifyCertificateCallback.Params.certificate()
Returns the certificate that is requested to be verified.
|
Modifier and Type | Method and Description |
---|---|
default java.util.List<Certificate> |
VerifyCertificateCallback.Params.intermediateCertificates()
Returns the list of intermediate certificates in the chain of the validated certificate.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ClientCertificate
A client SSL certificate.
|
Modifier and Type | Method and Description |
---|---|
static Certificate |
Certificate.of(java.security.cert.X509Certificate x509Cert)
Returns the
Certificate instance for the given x509 certificate. |