Uses of Interface
com.teamdev.jxbrowser.net.tls.Certificate
Packages that use Certificate
Package
Description
This package provides the classes that allow you to work with browser callback.
The network service callbacks.
Contains classes and interfaces for working with SSL certificates.
-
Uses of Certificate in com.teamdev.jxbrowser.browser.callback
Methods in com.teamdev.jxbrowser.browser.callback that return CertificateModifier and TypeMethodDescriptiondefault Certificate
CertificateErrorCallback.Params.certificate()
Returns the SSL certificate bound to the request which the certificate error occurred in.Methods in com.teamdev.jxbrowser.browser.callback that return types with arguments of type CertificateModifier and TypeMethodDescriptiondefault List<Certificate>
SelectClientCertificateCallback.Params.certificates()
Returns an immutable list of the certificates allowed by the server. -
Uses of Certificate in com.teamdev.jxbrowser.net.callback
Methods in com.teamdev.jxbrowser.net.callback that return CertificateModifier and TypeMethodDescriptiondefault Certificate
VerifyCertificateCallback.Params.certificate()
Returns the certificate that is requested to be verified.Methods in com.teamdev.jxbrowser.net.callback that return types with arguments of type CertificateModifier and TypeMethodDescriptiondefault List<Certificate>
VerifyCertificateCallback.Params.intermediateCertificates()
Returns the list of intermediate certificates in the chain of the validated certificate. -
Uses of Certificate in com.teamdev.jxbrowser.net.tls
Subinterfaces of Certificate in com.teamdev.jxbrowser.net.tlsMethods in com.teamdev.jxbrowser.net.tls that return CertificateModifier and TypeMethodDescriptionstatic Certificate
Certificate.of
(X509Certificate x509Cert) Returns theCertificate
instance for the given X.509 certificate.static Certificate
Certificate.of
(X509Certificate x509Cert, List<X509Certificate> intermediateX509Certs) Returns theCertificate
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.Methods in com.teamdev.jxbrowser.net.tls that return types with arguments of type CertificateModifier and TypeMethodDescriptiondefault List<Certificate>
Certificate.intermediateCertificates()
Returns the list of intermediate certificates associated with this certificate that may be needed for chain building.default List<Certificate>
ClientCertificate.intermediateCertificates()
Returns the list of intermediate certificates associated with this certificate needed for chain building.