Android APIs
public class

SslErrorHandler

extends Handler
java.lang.Object
   ↳ android.os.Handler
     ↳ android.webkit.SslErrorHandler

Class Overview

Represents a request for handling an SSL error. Instances of this class are created by the WebView and passed to onReceivedSslError(WebView, SslErrorHandler, SslError). The host application must call either proceed() or cancel() to set the WebView's response to the request.

Summary

Public Methods
void cancel()
Cancel this request and all pending requests for the WebView that had the error.
void proceed()
Proceed with the SSL certificate.
[Expand]
Inherited Methods
From class android.os.Handler
From class java.lang.Object

Public Methods

public void cancel ()

Added in API level 1

Cancel this request and all pending requests for the WebView that had the error.

public void proceed ()

Added in API level 1

Proceed with the SSL certificate.