blob: 426145ae7ca504a3b1a720dcd79456adc876f1b6 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.webkit;
18
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080019import android.os.Handler;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020
21/**
Huahui Wuad053ce2010-12-08 15:24:55 -080022 * SslErrorHandler: class responsible for handling SSL errors.
23 * This class is passed as a parameter to BrowserCallback.displaySslErrorDialog
24 * and is meant to receive the user's response.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025 */
26public class SslErrorHandler extends Handler {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027
28 /**
Huahui Wuad053ce2010-12-08 15:24:55 -080029 * Package-private constructor needed for API compatibility.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030 */
Huahui Wuad053ce2010-12-08 15:24:55 -080031 SslErrorHandler() {}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032
33 /**
34 * Proceed with the SSL certificate.
35 */
Huahui Wuad053ce2010-12-08 15:24:55 -080036 public void proceed() {}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037
38 /**
39 * Cancel this request and all pending requests for the WebView that had
40 * the error.
41 */
Huahui Wuad053ce2010-12-08 15:24:55 -080042 public void cancel() {}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043}