Package | Description |
---|---|
com.teamdev.jxbrowser.browser.callback |
This package provides the classes that allow you to work with browser callback.
|
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 X.509 certificate. |
static Certificate |
Certificate.of(java.security.cert.X509Certificate x509Cert,
java.util.List<java.security.cert.X509Certificate> intermediateX509Certs)
Returns the
Certificate instance for the given X.509 certificate and the list of
intermediate X.509 certificates associated with this the certificate that may be needed for
chain building. |
Modifier and Type | Method and Description |
---|---|
default java.util.List<Certificate> |
ClientCertificate.intermediateCertificates()
Returns the list of intermediate certificates associated with this certificate needed for
chain building.
|
default java.util.List<Certificate> |
Certificate.intermediateCertificates()
Returns the list of intermediate certificates associated with this certificate that may be
needed for chain building.
|