public interface CertificateErrorCallback extends BrowserAsyncCallback<CertificateErrorCallback.Params,CertificateErrorCallback.Action>
CertificateErrorCallback.Params
object contains information about the problematic SSL certificate.
Use the CertificateErrorCallback.Action.allow()
method to allow the certificate and continue loading the web
page.
Use the CertificateErrorCallback.Action.deny()
method to deny the certificate and continue loading
the web page. An error page will be loaded. This is the default behavior.
Use the CertificateErrorCallback.Action.cancel()
method to cancel loading.
If the callback throws an exception, the CertificateErrorCallback.Action.deny()
method will be invoked.
Modifier and Type | Interface and Description |
---|---|
static class |
CertificateErrorCallback.Action
An action providing a response to the
CertificateErrorCallback . |
static interface |
CertificateErrorCallback.Params
The parameters of the
CertificateErrorCallback . |
on